Пример #1
0
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public HarmonyEntityQueryableExpressionVisitorFactory(
     IModel model,
     IHarmonyMaterializerFactory materializerFactory)
 {
     _model = model;
     _materializerFactory = materializerFactory;
 }
Пример #2
0
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public HarmonyEntityQueryableExpressionVisitor(
     IModel model,
     IHarmonyMaterializerFactory materializerFactory,
     EntityQueryModelVisitor entityQueryModelVisitor,
     IQuerySource querySource)
     : base(entityQueryModelVisitor)
 {
     _model = model;
     _materializerFactory = materializerFactory;
     _querySource         = querySource;
 }