MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / selectinload

Function selectinload

lib/sqlalchemy/orm/strategy_options.py:2461–2471  ·  view source on GitHub ↗
(
    *keys: _AttrType,
    recursion_depth: Optional[int] = None,
    chunksize: Optional[int] = None,
)

Source from the content-addressed store, hash-verified

2459
2460@loader_unbound_fn
2461def selectinload(
2462 *keys: _AttrType,
2463 recursion_depth: Optional[int] = None,
2464 chunksize: Optional[int] = None,
2465) -> _AbstractLoad:
2466 return _generate_from_keys(
2467 Load.selectinload,
2468 keys,
2469 False,
2470 {"recursion_depth": recursion_depth, "chunksize": chunksize},
2471 )
2472
2473
2474@loader_unbound_fn

Callers 15

test_9669_andFunction · 0.90
test_9669_of_typeFunction · 0.90
test_executeMethod · 0.90
test_scalarsMethod · 0.90
goMethod · 0.90

Calls 1

_generate_from_keysFunction · 0.85

Tested by 15

test_9669_andFunction · 0.72
test_9669_of_typeFunction · 0.72
test_executeMethod · 0.72
test_scalarsMethod · 0.72
goMethod · 0.72