-
-
Notifications
You must be signed in to change notification settings - Fork 6
Features
Yet Anther ORM consists of multiple Features that are ether directly related to Database queries or can be used without the need for it.
There are several method in the DbAccessLayer for Selecting, Updating, Deleting, Refreshing Entities. All theese methods are designed to be as fast as possible but have litte not no configuration abilities. So if you are in need of fast selecting certain items or want to do quick stuff with your database, this might be the right way:
Example:
Select an Entity
dbAccess.Select<T>(); //selects all T dbAccess.Select<T>(primaryKey); //selects one entity with that primary key dbAccess.Select<T>(factoryArguments); //invokes a query factory on the entity (s.u)
WIP
WIP
WIP
The DbConfig is a Reflection based Cache that caches the configuration of entities and relations in ether an instance based mode or global. It can be used seperatly.
WIP