Ejemplo n.º 1
0
 public HookQueryable(IQueryable <T> baseQueryable, Auxilary aux, DescriptionHolder descrHolder)
 {
     _baseQueryable = baseQueryable;
     _aux           = aux;
     _description   = descrHolder ?? new DescriptionHolder();
     _provider      = new HookQueryProvider(baseQueryable.Provider, _aux, _description);
 }
Ejemplo n.º 2
0
 public AddCommandRunner(Auxilary aux, ILazyDisposable <DbContext> dc)
 {
     _aux = aux;
     _dc  = dc;
 }
Ejemplo n.º 3
0
 internal RawQuery(Sql sql, Query runtime)
 {
     Sql      = sql;
     _runtime = runtime;
     _a       = runtime.Aux;
 }
Ejemplo n.º 4
0
 public RelateCommandRunner(Auxilary aux, ILazyDisposable <DbContext> dc)
 {
     _dc  = dc;
     _aux = aux;
 }
 public TransactionalEnumerator(IEnumerator <T> original, Auxilary auxilary)
 {
     _original = original;
     _auxilary = auxilary;
 }
 public TransactionalQueryable(Auxilary auxilary, IQueryable <T> original)
 {
     _auxilary = auxilary;
     _original = original;
     Provider  = new TransactionalQueryProvider(auxilary, original.Provider);
 }
Ejemplo n.º 7
0
 public DirectSqlRunner(EFCore_DirectSql_CommandFeature feature, Auxilary aux)
 {
     _feature = feature;
     _aux     = aux;
 }
Ejemplo n.º 8
0
 public HookQueryProvider(IQueryProvider baseQueryProvider, Auxilary aux, DescriptionHolder description)
 {
     _baseQueryProvider = baseQueryProvider;
     _aux         = aux;
     _description = description;
 }
Ejemplo n.º 9
0
 public DirectSqlRunner(EFCore_DirectSql_CommandAspect aspect, Auxilary aux)
 {
     _aspect = aspect;
     _aux    = aux;
 }
 internal StrokeToolingWrapper(IStrokeRuntime runtime, Auxilary aux, HashSet <Type> types)
 {
     _runtime = runtime;
     _aux     = aux;
     _types   = types;
 }
Ejemplo n.º 11
0
 public HookEnumerator(string hash, IEnumerator <T> original, Auxilary auxilary, DescriptionHolder description)
 {
     _auxilary = auxilary;
     _original = original;
     auxilary.QueryManuallyClone(hash, (IEnumerable <T>)_data, description.Description);
 }
 public TransactionalQueryProvider(Auxilary auxilary, IQueryProvider original)
 {
     _auxilary = auxilary;
     _original = original;
 }