TortugaResearch / Tortuga.Chain

A fluent ORM for .NET
Other
335 stars 22 forks source link

GetByColumn #441

Closed Grauenwolf closed 2 years ago

Grauenwolf commented 2 years ago

Gets a set of records using a column name and a value or value list.

dataSource.GetByColumn( TObjectName tableName, string columnName, TKey key)
dataSource.GetByColumn<Object>(string columnName, TKey key)
dataSource.GetByColumn( TObjectName tableName, string columnName, IEnumerable<TKey> keyList)
dataSource.GetByColumn<Object>(string columnName, IEnumerable<TKey> keyList)
Grauenwolf commented 2 years ago

Add short option to match #443