Entity class

Constructors

Entity()

Properties

asDictionary Dictionary
Creates a Dictionary from the given Object. all the members that are not methods become the dictionary members
no setter
entityName String
Entity name
no setter
fieldMirrors List<DeclarationMirror>
Returns the DeclarationMirrors objects of the fields defined within the this class entity.
no setter
fieldTypes Map<String, FieldTypeInfo>
Returns the types of the entity columns. (This can throw errors if the target entity is in bad shape.)
no setter
hashCode int
The hash code for this object.
no setterinherited
mirror → InstanceMirror
InstanceMirrors reflected from the entity.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sqlTableCreationQuery String
SQL Table Creation Schema that creates a Table for the given entity.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
unsafeLoadFromDictionary<T extends Entity>(Dictionary source) → T
Loads the values from a dictionary into the fields with the same name in the entity.

Operators

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

Static Methods

registerExtendedType<E extends Entity>(E child) → dynamic