def unbake_lazy_loaders():
"""Disable the use of baked queries for all lazyloaders systemwide.
- This method now raises NotImplmentedError() as the "baked" implementation
+ This method now raises NotImplementedError() as the "baked" implementation
is the only lazy load implementation. The
:paramref:`.relationship.bake_queries` flag may be used to disable
the caching of queries on a per-relationship basis.
"""Represent a loader option that isn't tied to a root entity.
The loader option will produce an entity-linked :class:`.Load`
- object when it is passed :metfh:`.Query.options`.
+ object when it is passed :meth:`.Query.options`.
This provides compatibility with the traditional system
of freestanding options, e.g. ``joinedload('x.y.z')``.