EntityManager.get

Loads the requested entity (#ID) from the database

Mountain mt;
bool found = em.get!Mountain(4, mt);
struct EntityManager(DatabaseDriver)
@safe
bool
get
(
TEntity
)
(
ulong id
,
out TEntity output
)
if (
isEntityType!TEntity
)
if (
isORMCompatible!DatabaseDriver
)

Meta