OrmMigrationRecords class
Properties
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
toString()
→ String
-
A string representation of this object.
inherited
Static Methods
-
all({String? connection})
→ Future<List<$OrmMigrationRecord>>
-
-
anyExist({String? connection})
→ Future<bool>
-
-
count({String? connection})
→ Future<int>
-
-
find(Object id, {String? connection})
→ Future<$OrmMigrationRecord?>
-
-
findOrFail(Object id, {String? connection})
→ Future<$OrmMigrationRecord>
-
-
limit(int count, {String? connection})
→ Query<$OrmMigrationRecord>
-
-
orderBy(String column, {String direction = "asc", String? connection})
→ Query<$OrmMigrationRecord>
-
-
query([String? connection])
→ Query<$OrmMigrationRecord>
-
Starts building a query for $OrmMigrationRecord.
-
repo([String? connection])
→ Repository<$OrmMigrationRecord>
-
Creates a
Repository for $OrmMigrationRecord.
-
where(String column, String operator, dynamic value, {String? connection})
→ Query<$OrmMigrationRecord>
-
-
whereIn(String column, List values, {String? connection})
→ Query<$OrmMigrationRecord>
-