IMemberProvider<TRecord, TFieldEnum, TFilterRule>.GetById Method |
Retrieves a list of records having the specified IDs.
Namespace:
Dundas.BI.AccountServices.Extensibility
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
SyntaxICollection<TRecord> GetById(
ICollection<Guid> recordIds
)
Function GetById (
recordIds As ICollection(Of Guid)
) As ICollection(Of TRecord)
ICollection<TRecord>^ GetById(
ICollection<Guid>^ recordIds
)
abstract GetById :
recordIds : ICollection<Guid> -> ICollection<'TRecord>
Parameters
- recordIds
- Type: System.Collections.Generic.ICollection<Guid>
The IDs of the records to retrieve.
Return Value
Type:
ICollection<TRecord>The requested records.
Remarks
Any requested records which are not found should just be omitted from the result (i.e. no error
should be thrown).
See Also