class documentation

class ColumnLoader(LoaderStrategy):

Known subclasses: sqlalchemy.orm.strategies.ExpressionColumnLoader

View In Hierarchy

Provide loading behavior for a .ColumnProperty.
Method __init__ Undocumented
Method create​_row​_processor Establish row processing functions for a given QueryContext.
Method init​_class​_attribute Undocumented
Method setup​_query Establish column and other state for a given QueryContext.
Class Variable __slots__ Undocumented
Instance Variable columns Undocumented
Instance Variable is​_class​_level Undocumented
Instance Variable is​_composite Undocumented

Inherited from LoaderStrategy:

Method __str__ Undocumented
Instance Variable key Undocumented
Instance Variable parent Undocumented
Instance Variable parent​_property Undocumented
Instance Variable strategy​_key Undocumented
Instance Variable strategy​_opts Undocumented
def __init__(self, parent, strategy_key):
def create_row_processor(self, context, query_entity, path, loadopt, mapper, result, adapter, populators):

Establish row processing functions for a given QueryContext.

This method fulfills the contract specified by MapperProperty.create_row_processor().

StrategizedProperty delegates its create_row_processor() method directly to this method.

def init_class_attribute(self, mapper):
def setup_query(self, compile_state, query_entity, path, loadopt, adapter, column_collection, memoized_populators, check_for_adapt=False, **kwargs):

Establish column and other state for a given QueryContext.

This method fulfills the contract specified by MapperProperty.setup().

StrategizedProperty delegates its setup() method directly to this method.

__slots__: tuple[str, ...] =
columns =

Undocumented

is_composite =

Undocumented