SQLiteConnectionFindT Method (ExpressionFuncT, Boolean) |
Attempts to retrieve the first object that matches the predicate from the table
associated with the specified type.
Namespace:
SQLite
Assembly:
RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax public T Find<T>(
Expression<Func<T, bool>> predicate
)
where T : new()
Parameters
- predicate
- Type: System.Linq.ExpressionsExpressionFuncT, Boolean
A predicate for which object to find.
Type Parameters
- T
Return Value
Type:
T
The object that matches the given predicate or null
if the object is not found.
See Also