getWhere2<TDef1 extends ITableDefinition, TDef2 extends ITableDefinition> function

SqlRequest getWhere2<TDef1 extends ITableDefinition, TDef2 extends ITableDefinition>(
  1. Where where(
    1. TDef1 e,
    2. TDef2 t2
    )?,
  2. TDef1 tableDefinition1,
  3. TDef2 tableDefinition2
)

'where' clause

Implementation

SqlRequest getWhere2<TDef1 extends ITableDefinition, TDef2 extends ITableDefinition>(
  Where Function(TDef1 e, TDef2 t2)? where,
  TDef1 tableDefinition1,
  TDef2 tableDefinition2,
) {
  return SqlRequest('sql', {});
}