IDataStore.FirstOrDefault Method
.NET Standard 2.x
Returns the first data row of the DataStore. If no data row is found, returns null.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Overloads
| Method | Description |
|---|---|
| FirstOrDefault<TModel>() | Returns the first data row of the DataStore. If no data row is found, returns null. |
| FirstOrDefault<TModel>(Predicate<TModel> predicate) | Returns the first data row of the DataStore that meets the criteria specified by a Predicate<TModel> object. If no data row is found, returns null. |