RowsetBase FindByKey Method (Row, Func Row, Boolean )NFX Class Library

[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. This method does not perform well on Rowsets instances as a rowset is unordered list which does linear search. In contrast, Tables are always ordered and perform binary search instead

Namespace: NFX.DataAccess.CRUD
Assembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

public Row FindByKey(
	Row row,
	Func<Row, bool> extraWhere
)

Parameters

row
Type: NFX.DataAccess.CRUD Row
extraWhere
Type: OnlineSystem Func Row, OnlineBoolean 

Return Value

Type: Row
See Also