ISupportsGetByKeyList..::..GetByKeyList<(Of <(<'TKey>)>)> Method (String, String, IEnumerable<(Of <(<'TKey>)>)>)
Gets a set of records by an unique key.
Namespace:
Tortuga.Chain.DataSourcesAssembly: Tortuga.Chain.Core (in Tortuga.Chain.Core.dll)
Syntax
[EditorBrowsableAttribute] IMultipleRowDbCommandBuilder GetByKeyList<TKey>( string tableName, string keyColumn, IEnumerable<TKey> keys )
<EditorBrowsableAttribute> _ Function GetByKeyList(Of TKey) ( _ tableName As String, _ keyColumn As String, _ keys As IEnumerable(Of TKey) _ ) As IMultipleRowDbCommandBuilder
[EditorBrowsableAttribute] generic<typename TKey> IMultipleRowDbCommandBuilder^ GetByKeyList( String^ tableName, String^ keyColumn, IEnumerable<TKey>^ keys )
Type Parameters
- TKey
- The type of the t key.
Parameters
- tableName
- Type: String
Name of the table.
- keyColumn
- Type: String
Name of the key column. This should be a primary or unique key, but that's not enforced.
- keys
- Type: IEnumerable<(Of <(<'TKey>)>)>
The keys.