DataGetValue(DataRow, String, String, Object) Method
Allows obtain the value of a datarow by combining the table and the field (field or table.field).
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static Object GetValue(
DataRow data,
string table,
string field,
Object defaultValue = null
)
Public Shared Function GetValue (
data As DataRow,
table As String,
field As String,
Optional defaultValue As Object = Nothing
) As Object
- data DataRow
- Data to evaluate.
- table String
- Table name.
- field String
- Field name.
- defaultValue Object (Optional)
- Default value.
ObjectObject with value of a datarow by combining the table and the field.