Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. PersistRational :: Rational -> PersistValue

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  2. type PersistRecordBackend record backend = (PersistEntity record, PersistEntityBackend record ~ BaseBackend backend)

    esqueleto Database.Esqueleto.Legacy

    A convenient alias for common type signatures

  3. type PersistStore a = PersistStoreWrite a

    esqueleto Database.Esqueleto.Legacy

    A backwards-compatible alias for those that don't care about distinguishing between read and write queries. It signifies the assumption that, by default, a backend can write as well as read.

  4. class (Show BackendKey backend, Read BackendKey backend, Eq BackendKey backend, Ord BackendKey backend, PersistCore backend, PersistField BackendKey backend, ToJSON BackendKey backend, FromJSON BackendKey backend) => PersistStoreRead backend

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  5. class (Show BackendKey backend, Read BackendKey backend, Eq BackendKey backend, Ord BackendKey backend, PersistStoreRead backend, PersistField BackendKey backend, ToJSON BackendKey backend, FromJSON BackendKey backend) => PersistStoreWrite backend

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  6. PersistText :: Text -> PersistValue

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  7. PersistTimeOfDay :: TimeOfDay -> PersistValue

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  8. PersistUTCTime :: UTCTime -> PersistValue

    esqueleto Database.Esqueleto.Legacy

    No documentation available.

  9. type PersistUnique a = PersistUniqueWrite a

    esqueleto Database.Esqueleto.Legacy

    A backwards-compatible alias for those that don't care about distinguishing between read and write queries. It signifies the assumption that, by default, a backend can write as well as read.

  10. class PersistStoreRead backend => PersistUniqueRead backend

    esqueleto Database.Esqueleto.Legacy

    Queries against Unique keys (other than the id Key). Please read the general Persistent documentation to learn how to create Unique keys. Using this with an Entity without a Unique key leads to undefined behavior. A few of these functions require a single Unique, so using an Entity with multiple Uniques is also undefined. In these cases persistent's goal is to throw an exception as soon as possible, but persistent is still transitioning to that. SQL backends automatically create uniqueness constraints, but for MongoDB you must manually place a unique index on a field to have a uniqueness constraint.

Page 23 of many | Previous | Next