DataFindRow(DataSet, Int32, String, Object, String, String) Method

Searches a row of data based on the indicated parameters

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static DataRow FindRow(
	DataSet data,
	int tableIndex,
	string field = null,
	Object value = null,
	string condition = null,
	string order = null
)

Parameters

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.

Return Value

DataRow
DataRow with the rows of data based on the indicated parameters.

See Also