EntityManager.find

Undocumented in source. Be warned that the author may not have intended to support it.
  1. EntityCollection!TEntity find(Query delegate(Query) @(safe) buildQuery)
  2. EntityCollection!TEntity find(void delegate(Statement) @(safe) bindValues)
    struct EntityManager(DatabaseDriver)
    @safe deprecated
    find
    (
    TEntity
    Query function @safe pure buildQuery
    )
    (
    void delegate @safe bindValues = null
    )
    if (
    isEntityType!TEntity &&
    (buildQuery !is null)
    )
    if (
    isORMCompatible!DatabaseDriver
    )
  3. PreCollection!(TEntity, DatabaseDriver) find()

Meta