RowsetBase FindByKey Method NFX Class Library

[This is preliminary documentation and is subject to change.]

Overload List

  NameDescription
Public methodFindByKey( Object )
Tries to find a row by specified keyset 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
Public methodFindByKey(Row)
Tries to find a row by specified keyset and returns it or null if not found
Public methodFindByKey(Row, Func Row, Boolean )
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
Public methodFindByKey(Func Row, Boolean ,  Object )
Tries to find a row by specified keyset and extra WHERE clause and returns it or null if not found
Back to Top
See Also