Files
sqlalchemy/doc/build/orm/session.rst
T
Mike Bayer 8be93c23ee - add new documentation that applies to all modern SQLA versions,
detailing ORM event recipes across the board.
2015-09-02 11:58:59 -04:00

27 lines
559 B
ReStructuredText

.. _session_toplevel:
=================
Using the Session
=================
.. module:: sqlalchemy.orm.session
The :func:`.orm.mapper` function and :mod:`~sqlalchemy.ext.declarative` extensions
are the primary configurational interface for the ORM. Once mappings are
configured, the primary usage interface for persistence operations is the
:class:`.Session`.
.. toctree::
:maxdepth: 2
session_basics
session_state_management
cascades
session_transaction
persistence_techniques
contextual
session_events
session_api