[This is preliminary documentation and is subject to change.]
Tries to find a row by specified keyset and extra WHERE clause and returns it or null if not found
Namespace: NFX.DataAccess.CRUDAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public Row FindByKey(
Func<Row, bool> extraWhere,
params Object[] keys
)
public Row FindByKey(
Func<Row, bool> extraWhere,
params Object[] keys
)
Public Function FindByKey (
extraWhere As Func(Of Row, Boolean),
ParamArray keys As Object()
) As Row
Public Function FindByKey (
extraWhere As Func(Of Row, Boolean),
ParamArray keys As Object()
) As Row
public:
Row^ FindByKey(
Func<Row^, bool>^ extraWhere,
... array<Object^>^ keys
)
public:
Row^ FindByKey(
Func<Row^, bool>^ extraWhere,
... array<Object^>^ keys
)
member FindByKey :
extraWhere : Func<Row, bool> *
keys : Object[] -> Row
member FindByKey :
extraWhere : Func<Row, bool> *
keys : Object[] -> Row
Return Value
Type:
Row