DataFindRow(DataSet, String, 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,
	string table,
	string field = null,
	Object value = null,
	string condition = null,
	string order = null
)

Parameters

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.

Return Value

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

See Also