Skip to content

Commit

Permalink
Cosmos: Implement query pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
smitpatel committed Jun 19, 2019
1 parent 0c0bd1f commit 3dbe96e
Show file tree
Hide file tree
Showing 65 changed files with 5,038 additions and 988 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
using Microsoft.EntityFrameworkCore.Cosmos.Metadata.Conventions.Internal;
using Microsoft.EntityFrameworkCore.Cosmos.Query.Internal;
using Microsoft.EntityFrameworkCore.Cosmos.Query.Pipeline;
using Microsoft.EntityFrameworkCore.Cosmos.Query.Sql;
using Microsoft.EntityFrameworkCore.Cosmos.Query.Sql.Internal;
using Microsoft.EntityFrameworkCore.Cosmos.Storage.Internal;
using Microsoft.EntityFrameworkCore.Diagnostics;
using Microsoft.EntityFrameworkCore.Infrastructure;
Expand Down Expand Up @@ -50,8 +48,11 @@ public static IServiceCollection AddEntityFrameworkCosmos([NotNull] this IServic
b => b
.TryAddSingleton<ICosmosSingletonOptions, CosmosSingletonOptions>()
.TryAddSingleton<SingletonCosmosClientWrapper, SingletonCosmosClientWrapper>()
.TryAddSingleton<ISqlExpressionFactory, SqlExpressionFactory>()
.TryAddSingleton<IQuerySqlGeneratorFactory, QuerySqlGeneratorFactory>()
.TryAddSingleton<IMethodCallTranslatorProvider, CosmosMethodCallTranslatorProvider>()
.TryAddSingleton<IMemberTranslatorProvider, CosmosMemberTranslatorProvider>()
.TryAddScoped<CosmosClientWrapper, CosmosClientWrapper>()
.TryAddScoped<ISqlGeneratorFactory, CosmosSqlGeneratorFactory>()
);

builder.TryAddCoreServices();
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

127 changes: 0 additions & 127 deletions src/EFCore.Cosmos/Query/Expressions/Internal/QueryShaperExpression.cs

This file was deleted.

Loading

0 comments on commit 3dbe96e

Please sign in to comment.