Click or drag to resize

SQLiteConnectionGetT 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
C#
public T Get<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. Throws a not found exception if the object is not found.
See Also