IDataStore.Find Method
.NET Standard 2.x
Finds the next row in the specified buffer of the DataStore in which data meets the condition specified by the expression.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Overloads
Method | Description |
---|---|
Find<TModel>(string expression, int start, int end, DwBuffer dwBuffer = DwBuffer.Primary) | Finds the next row in the specified buffer of the DataStore in which data meets the condition specified by the expression. If both start and end parameters are set to -1, it indicates the search starts from the beginning to the end. The primary buffer is specified by default. |
Find<TModel>(Predicate<TModel> predicate, int start, int end, DwBuffer dwBuffer = DwBuffer.Primary) | Finds the next row in the DataStore in which data meets the criteria defined by Predicate . If both start and end parameters are set to -1, it indicates the search starts from the beginning to the end. The primary buffer is specified by default. |
Find<TModel>(string expression, DwBuffer dwBuffer = DwBuffer.Primary) | Finds the next row in the specified buffer of the DataStore in which data meets the condition specified by the expression. The primary buffer is specified by default. |
Find<TModel>(Predicate<TModel> predicate, DwBuffer dwBuffer = DwBuffer.Primary) | Finds the next row in the DataStore in which data meets the criteria defined by a Predicate<TModel> object. The primary buffer is specified by default. |