SqlPersistT is currently:
type SqlPersistT = ReaderT SqlBackend
It will become:
newtype SqlPersistT m a = SqlPersistT
{ unsafeRunSqlPersistT :: ReaderT SqlBackend m a
}
This gives us the opportunity to provide better documentation and error messages for the type, along with better instances.
SqlPersistTis currently:It will become:
This gives us the opportunity to provide better documentation and error messages for the type, along with better instances.