DataFindRow(DataSet, Int32, String, Object, String, String) Method
Searches a row of data based on the indicated parameters
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static DataRow FindRow(
DataSet data,
int tableIndex,
string field = null,
Object value = null,
string condition = null,
string order = null
)
Public Shared Function FindRow (
data As DataSet,
tableIndex As Integer,
Optional field As String = Nothing,
Optional value As Object = Nothing,
Optional condition As String = Nothing,
Optional order As String = Nothing
) As DataRow
- data DataSet
- Data to evaluate.
- tableIndex Int32
- Table index.
- field String (Optional)
- Field name.
- value Object (Optional)
- Value.
- condition String (Optional)
- Condition.
- order String (Optional)
- Order by.
DataRowDataRow with the rows of data based on the indicated parameters.