DataFindRow(DataSet, String, 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,
string table,
string field = null,
Object value = null,
string condition = null,
string order = null
)
Public Shared Function FindRow (
data As DataSet,
table As String,
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.
- table String
- Table name.
- 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.