DataGetValue(DataRow, String, String, Object) Method

Allows obtain the value of a datarow by combining the table and the field (field or table.field).

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static Object GetValue(
	DataRow data,
	string table,
	string field,
	Object defaultValue = null
)

Parameters

data  DataRow
Data to evaluate.
table  String
Table name.
field  String
Field name.
defaultValue  Object  (Optional)
Default value.

Return Value

Object
Object with value of a datarow by combining the table and the field.

See Also