DataSourceExtensionsGetByIdList Method |
Loads from the data source the rows with the specified ids.
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic static IBufferTable GetByIdList(
this IDataSource dataSource,
string tableName,
IEnumerable<Guid> idList,
string transactionName = null
)
<ExtensionAttribute>
Public Shared Function GetByIdList (
dataSource As IDataSource,
tableName As String,
idList As IEnumerable(Of Guid),
Optional transactionName As String = Nothing
) As IBufferTable
public:
[ExtensionAttribute]
static IBufferTable^ GetByIdList(
IDataSource^ dataSource,
String^ tableName,
IEnumerable<Guid^>^ idList,
String^ transactionName = nullptr
)
[<ExtensionAttribute>]
static member GetByIdList :
dataSource : IDataSource *
tableName : string *
idList : IEnumerable<Guid> *
?transactionName : string
(* Defaults:
let _transactionName = defaultArg transactionName null
*)
-> IBufferTable
Parameters
- dataSource
- Type: Aloe.SystemFrameworks.Domain.DataAccessIDataSource
The data source. - tableName
- Type: SystemString
Name of the table. - idList
- Type: System.Collections.GenericIEnumerableGuid
The identifier list. - transactionName (Optional)
- Type: SystemString
Name of the transaction.
Return Value
Type:
IBufferTableA buffer table, containing the loaded rows.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IDataSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also