ISqliteQuery<T extends IModel> class abstract

Implementers

Constructors

ISqliteQuery({required SqliteData data, required EFTable<T> table})

Properties

data SqliteData
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
table EFTable<T>
getter/setter pair

Methods

Add(T item) Future<void>
Delete(int id) Future<void>
Execute(String sql) Future<void>
FirstOrDefault(String query) Future<T>
fromMap(Map<String, dynamic> map) → T
Get() Future<List<T>>
GetById(int id) Future<T>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap(T item) Map<String, dynamic>
toString() String
A string representation of this object.
inherited
Update(T item) Future<void>
Where(String query) Future<List<T>>

Operators

operator ==(Object other) bool
The equality operator.
inherited