Click or drag to resize

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
Syntax
public static IBufferTable GetByIdList(
	this IDataSource dataSource,
	string tableName,
	IEnumerable<Guid> idList,
	string transactionName = null
)

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: IBufferTable
A 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