├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── dependencies.props ├── global.json ├── sln ├── OdataToEntity.Test.Asp.sln ├── OdataToEntity.Test.DynamicDataContext.sln ├── OdataToEntity.Test.Ef6.SqlServer.sln ├── OdataToEntity.Test.EfCore.PostgreSql.sln ├── OdataToEntity.Test.EfCore.SqlServer.sln ├── OdataToEntity.Test.GraphQL.sln ├── OdataToEntity.Test.InMemory.sln ├── OdataToEntity.Test.Linq2Db.sln ├── OdataToEntity.Test.Wcf.sln ├── OdataToEntity.Test.sln └── OdataToEntity.sln ├── source ├── Directory.Build.targets ├── OdataToEntity.AspNetCore │ ├── ODataPrimitiveResult.cs │ ├── ODataResult.cs │ ├── OdataToEntity.AspNetCore.csproj │ ├── OeAspHelper.cs │ ├── OeAspQueryParser.cs │ ├── OeBatchController.cs │ ├── OeBatchFilterAttribute.cs │ ├── OeControllerConvention.cs │ ├── OeDataContext.cs │ ├── OeHttpRequestHeaders.cs │ ├── OeMetadataController.cs │ ├── OeMiddleware.cs │ ├── OeMiddlewareExtension.cs │ ├── OePageMiddleware.cs │ ├── OeRouter.cs │ └── UriHelper.cs ├── OdataToEntity.Ef6 │ ├── DummyCommandBuilder.cs │ ├── OdataToEntity.Ef6.csproj │ ├── OeEf6AsyncEnumerator.cs │ ├── OeEf6DataAdapter.cs │ ├── OeEf6DataAdapterExtension.cs │ ├── OeEf6EdmModelMetadataProvider.cs │ ├── OeEf6EnumerableToQuerableVisitor.cs │ └── OeEf6OperationAdapter.cs ├── OdataToEntity.EfCore.DynamicDataContext │ ├── DynamicDataAdapter.cs │ ├── DynamicDbContext.cs │ ├── DynamicMiddlewareHelper.cs │ ├── DynamicTypeDefinition.cs │ ├── DynamicTypeDefinitionManager.cs │ ├── DynamicTypeDefinitionManagerFactory.cs │ ├── EmitDynamicTypeDefinitionManager.cs │ ├── InformationSchema │ │ ├── InformationSchemaSettings.cs │ │ ├── MySqlModelCustomizer.cs │ │ ├── MySqlSchema.cs │ │ ├── MySqlSqlGenerationHelper.cs │ │ ├── Navigation.cs │ │ ├── PostgreSqlModelCustomizer.cs │ │ ├── PostgreSqlSchema.cs │ │ ├── ProviderSpecificSchema.cs │ │ ├── SchemaCache.cs │ │ ├── SchemaCacheFactory.cs │ │ ├── SchemaTables.cs │ │ ├── SqlServerModelCustomizer.cs │ │ └── SqlServerSchema.cs │ ├── ModelBuilder │ │ ├── DynamicConventionSetBuilder.cs │ │ ├── DynamicDependentPropertyInfo.cs │ │ ├── DynamicEdmModelMetadataProvider.cs │ │ ├── DynamicMetadataProvider.cs │ │ ├── DynamicModelBuilder.cs │ │ └── DynamicPropertyInfo.cs │ ├── OdataToEntity.EfCore.DynamicDataContext.csproj │ ├── TableFullName.cs │ └── Types │ │ ├── DynamicDbContexts.cs │ │ └── DynamicTypes.cs ├── OdataToEntity.EfCore │ ├── EfCoreExtension.cs │ ├── OdataToEntity.EfCore.csproj │ ├── OeDbQueryAdapter.cs │ ├── OeDbSetAdapter.cs │ ├── OeEfCoreDataAdapter.cs │ ├── OeEfCoreDataAdapterExtension.cs │ ├── OeEfCoreDataReaderAsyncEnumerator.cs │ ├── OeEfCoreEdmModelMetadataProvider.cs │ ├── OeEfCoreOperationAdapter.cs │ ├── OeMySqlEfCoreOperationAdapter.cs │ └── Postgresql │ │ ├── OeDateTimeOffsetMembersVisitor.cs │ │ ├── OeEfCorePostgreSqlDataAdapter.cs │ │ └── OePostgreSqlEfCoreOperationAdapter.cs ├── OdataToEntity.GraphQL │ ├── GraphqlExtension.cs │ ├── OdataToEntity.GraphQL.csproj │ ├── OeEntitySetResolver.cs │ ├── OeGraphTypeBuilder.cs │ ├── OeGraphqlAstToODataUri.cs │ ├── OeGraphqlAsyncEnumerator.cs │ ├── OeGraphqlParser.cs │ └── OeSchemaBuilder.cs ├── OdataToEntity.Linq2Db │ ├── EntityUpdateHelper.cs │ ├── OdataToEntity.Linq2Db.csproj │ ├── OeLinq2DbDataAdapter.cs │ ├── OeLinq2DbDataAdapterExtension.cs │ ├── OeLinq2DbDataContext.cs │ ├── OeLinq2DbEdmModelMetadataProvider.cs │ ├── OeLinq2DbOperationAdapter.cs │ ├── OeLinq2DbSetAdapter.cs │ ├── OeLinq2DbTable.cs │ └── SetBuilder.cs └── OdataToEntity │ ├── Db │ ├── OeBoundFunctionAttribute.cs │ ├── OeBoundFunctionParameter.cs │ ├── OeDataAdapter.cs │ ├── OeDataAdapterExtension.cs │ ├── OeDbEnumerator.cs │ ├── OeEntityAsyncEnumeratorAdapter.cs │ ├── OeEntityDbEnumerator.cs │ ├── OeEntitySetAdapter.cs │ └── OeOperationAdapter.cs │ ├── InMemory │ ├── InMemoryConstantToVariableVisitor.cs │ ├── InMemoryDataAdapter.cs │ ├── InMemoryEntitySetAdapter.cs │ ├── InMemoryExecutor.cs │ ├── InMemoryOperationAdapter.cs │ ├── InMemoryQueryableWrapper.cs │ ├── InMemoryScalarExecutor.cs │ ├── InMemorySourceVisitor.cs │ └── NullPropagationVisitor.cs │ ├── Infrastructure │ ├── AllowNullAttribute.cs │ ├── AsyncEnumeratorHelper.cs │ ├── CompositeReadStream.cs │ ├── FastActivator.cs │ ├── OeDataTableHelper.cs │ ├── OeEntryEqualityComparer.cs │ ├── OeInMemoryMessage.cs │ ├── OeOdataValue.cs │ └── OeShadowPropertyInfo.cs │ ├── ModelBuilder │ ├── EntityTypeInfo.cs │ ├── FKeyInfo.cs │ ├── ManyToManyBuilder.cs │ ├── ManyToManyJoinDescription.cs │ ├── OeEdmModelBuilder.cs │ ├── OeEdmModelMetadataProvider.cs │ ├── OeEdmNavigationShadowProperty.cs │ ├── OeEdmStructuralShadowProperty.cs │ ├── OeJsonSchemaGenerator.cs │ ├── OeModelBuilderHelper.cs │ ├── OeOperationConfiguration.cs │ ├── OeValueAnnotation.cs │ └── PrimitiveTypeHelper.cs │ ├── OdataToEntity.csproj │ ├── OeAnnotationExtensions.cs │ ├── OeEdmClrHelper.cs │ ├── OeParser.cs │ ├── OeRequestHeaders.cs │ ├── Parsers │ ├── Cache │ │ ├── OeCacheContext.cs │ │ ├── OeCacheContextEqualityComparer.cs │ │ ├── OeQueryCache.cs │ │ ├── OeQueryCacheDbParameterDefinition.cs │ │ ├── OeQueryCacheDbParameterValue.cs │ │ ├── OeQueryCacheItem.cs │ │ └── UriCompare │ │ │ ├── EnumerableComparer.cs │ │ │ ├── ODataPathComparer.cs │ │ │ ├── OeCacheComparer.cs │ │ │ ├── OeCacheComparerParameterValues.cs │ │ │ ├── OeComparerExtension.cs │ │ │ ├── OeQueryNodeComparer.cs │ │ │ └── OeQueryNodeHashVisitor.cs │ ├── OeBatchMessage.cs │ ├── OeBatchParser.cs │ ├── OeDynamicType.cs │ ├── OeEntryFactory.cs │ ├── OeEntryFactoryFactory.cs │ ├── OeEnumerableStub.cs │ ├── OeExpressionBuilder.cs │ ├── OeExpressionHelper.cs │ ├── OeFunctionBinder.cs │ ├── OeGetParser.cs │ ├── OeMethodInfoHelper.cs │ ├── OeNavigationEntryFactory.cs │ ├── OeOperationHelper.cs │ ├── OeOperationMessage.cs │ ├── OeParseNavigationSegment.cs │ ├── OePostParser.cs │ ├── OePropertyAccessor.cs │ ├── OeQueryContext.cs │ ├── OeQueryExpression.cs │ ├── OeQueryNodeTranslator.cs │ ├── OeSkipTokenParser.cs │ ├── Translators │ │ ├── OeAggregationEntryFactoryFactory.cs │ │ ├── OeAggregationTranslator.cs │ │ ├── OeCrossApplyBuilder.cs │ │ ├── OeJoinBuilder.cs │ │ ├── OeNextLinkSelectItem.cs │ │ ├── OeOrderByTranslator.cs │ │ ├── OePageSelectItem.cs │ │ ├── OePropertyTranslator.cs │ │ ├── OeSelectEntryFactoryFactory.cs │ │ ├── OeSelectItem.cs │ │ ├── OeSelectItemTranslator.cs │ │ ├── OeSelectTranslator.cs │ │ ├── OeSelectTranslatorParameters.cs │ │ └── OeSkipTokenTranslator.cs │ └── Visitors │ │ ├── OeCollectionNavigationVisitor.cs │ │ ├── OeConstantToParameterVisitor.cs │ │ ├── OeConstantToVariableVisitor.cs │ │ ├── OeEnumerableToQuerableVisitor.cs │ │ ├── OeParameterToVariableVisitor.cs │ │ ├── OeQueryNodeVisitor.cs │ │ ├── OeSingleNavigationVisitor.cs │ │ ├── ReplaceParameterVisitor.cs │ │ └── SelectNullableVisitor.cs │ ├── Query │ ├── Builder │ │ ├── EntityTypeConfiguration.cs │ │ ├── OeAttributeReader.cs │ │ ├── OeModelBoundAttributeBuilder.cs │ │ ├── OeModelBoundFluentBuilder.cs │ │ ├── OeModelBoundKind.cs │ │ ├── OeModelBoundSettings.cs │ │ ├── OeModelBoundSettingsBuilder.cs │ │ ├── OeModelBoundValidator.cs │ │ ├── OePageNextLinkSelectItemBuilder.cs │ │ ├── OeSelectExpandBuilder.cs │ │ └── PropertyConfiguration.cs │ ├── CountAttribute.cs │ ├── ExpandAttribute.cs │ ├── FilterAttribute.cs │ ├── OeModelBoundProvider.cs │ ├── OrderByAttribute.cs │ ├── PageAttribute.cs │ ├── QueryOptionSetting.cs │ ├── SelectAttribute.cs │ └── SelectExpandType.cs │ └── Writers │ ├── OeBatchWriter.cs │ ├── OeGetWriter.cs │ ├── OeNextPageLinkBuilder.cs │ ├── OeODataWriter.cs │ └── OeUriHelper.cs └── test ├── OdataToEntity.Test.Asp ├── OdataToEntity.Test.AspClient │ ├── BatchTest.cs │ ├── Connected Services │ │ └── ODataClient │ │ │ ├── ConnectedService.json │ │ │ └── ODataClient.cs │ ├── DbFixtureInitDb.cs │ ├── DbFunctionAttribute.cs │ ├── FactAttribute.cs │ ├── ODataClient.cs │ ├── OdataToEntity.Test.AspClient.csproj │ ├── OeResponse.cs │ ├── ProcedureTest.cs │ ├── Program.cs │ ├── SelectTest2.cs │ └── TypeMapperVisitor.cs ├── OdataToEntity.Test.AspMvcServer │ ├── Controllers │ │ ├── BatchController.cs │ │ ├── CategoriesController.cs │ │ ├── CustomerShippingAddressController.cs │ │ ├── CustomersController.cs │ │ ├── ManyColumnsController.cs │ │ ├── ManyColumnsViewController.cs │ │ ├── MetadataController.cs │ │ ├── OrderContextController.cs │ │ ├── OrderItemsController.cs │ │ ├── OrderItemsViewController.cs │ │ ├── OrdersController.cs │ │ └── ShippingAddressesController.cs │ ├── OdataToEntity.Test.AspMvcServer.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json └── OdataToEntity.Test.AspServer │ ├── OdataToEntity.Test.AspServer.csproj │ ├── OrderContextOptions.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ └── appsettings.json ├── OdataToEntity.Test.DynamicDataContext.AspServer ├── InformationSchemaMapping.cs ├── InformationSchemaMapping.json ├── OdataToEntity.Test.DynamicDataContext.AspServer.csproj ├── Program.cs ├── Startup.cs └── appsettings.json ├── OdataToEntity.Test.DynamicDataContext ├── DbFixtureInitDb.cs ├── DynamicSchemaFactory.cs ├── EnumServiceProvider.cs ├── OdataToEntity.Test.DynamicDataContext.csproj ├── OwnedEntity.cs ├── Program.cs └── Properties │ └── launchSettings.json ├── OdataToEntity.Test.Ef6.SqlServer ├── EdmModelBuilderTest.cs ├── OdataToEntity.Test.Ef6.SqlServer.csproj ├── OeEf6SqlServerDataAdapter.cs ├── OrderDataAdapter.cs ├── OrderEf6Context.cs └── Program.cs ├── OdataToEntity.Test.EfCore.PostgreSql ├── DbFixtureInitDb.cs ├── OdataToEntity.Test.EfCore.PostgreSql.csproj ├── OeEfCorePostgreSqlDataAdapter.cs ├── OrderContextOptions.cs ├── OrderDataAdapter.cs └── Program.cs ├── OdataToEntity.Test.EfCore.SqlServer ├── DbFixtureInitDb.cs ├── EdmModelBuilderTest.cs ├── OdataToEntity.Test.EfCore.SqlServer.csproj ├── OeEfCoreSqlServerDataAdapter.cs ├── OrderContextOptions.cs ├── OrderDataAdapter.cs ├── PerformanceCacheTest.cs ├── ProcedureTest.cs └── Program.cs ├── OdataToEntity.Test.GraphQL ├── DbFixture.cs ├── OdataToEntity.Test.GraphQL.csproj ├── OeGraphQLHelper.cs ├── Order2DataAdapter.cs ├── Program.cs ├── StarWars │ ├── Character.cs │ ├── StarWarsContext.cs │ └── StarWarsDataAdapter.cs ├── StarWarsFixture.cs ├── StarWarsTests.cs └── TestResults.cs ├── OdataToEntity.Test.InMemory ├── DbFixtureInitDb.cs ├── InMemoryBatchTest.cs ├── InMemoryOrderContext.cs ├── ModelBoundTest.cs ├── OdataToEntity.Test.InMemory.csproj ├── OrderContextOptions.cs ├── OrderDataAdapter.cs └── Program.cs ├── OdataToEntity.Test.Linq2Db ├── EdmModelBuilderTest.cs ├── OdataToEntity.Test.Linq2Db.csproj ├── OeLinq2DbSqlServerDataAdapter.cs ├── OrderDataAdapter.cs └── Program.cs ├── OdataToEntity.Test.Linq2DbModel ├── OdataToEntity.Test.Linq2DbModel.csproj └── Order.cs ├── OdataToEntity.Test.Wcf ├── OdataToEntity.Test.WcfClient │ ├── ClientInterceptor.cs │ ├── OdataToEntity.Test.WcfClient.csproj │ ├── OrderContextOptions.cs │ ├── Program.cs │ └── WcfClientInterceptor.cs └── OdataToEntity.Test.WcfService │ ├── IOdataWcf.cs │ ├── OdataToEntity.Test.WcfService.csproj │ ├── OdataWcfService.cs │ ├── OdataWcfServiceBehaviorAttribute.cs │ ├── OrderService.cs │ └── Program.cs ├── OdataToEntity.Test ├── Batches │ ├── Add.batch │ ├── Delete.batch │ ├── ManyColumns.batch │ └── Update.batch ├── Common │ ├── BatchTest.cs │ ├── EfInclude.cs │ ├── EnumJsonReader.cs │ ├── IncludeVisitor.cs │ ├── ManyColumnsTest.cs │ ├── ModelBoundAttributeTest.cs │ ├── ModelBoundTestKind.cs │ ├── OpenTypeConverter.cs │ ├── OpenTypeResponseReader.cs │ ├── PageNextLinkModelBoundBuilder.cs │ ├── QueryParameters.cs │ ├── ResponseReader.cs │ ├── SelectTest.cs │ ├── SelectTest2.cs │ ├── TestFixtures.cs │ └── TestHelper.cs ├── DbFixture.cs ├── DbFixtureInitDb.cs ├── Model │ ├── Order.cs │ └── OrderContext.cs ├── OdataToEntity.Test.csproj ├── OrderContextOptions.cs ├── OrderDataAdapter.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── QueryComparerTest.cs └── SQLiteVisitor.cs └── sql_scripts ├── mysql.sql ├── postgresql.sql ├── sqlserver.sql └── star_wars_sqlserver.sql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/README.md -------------------------------------------------------------------------------- /dependencies.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/dependencies.props -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/global.json -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.Asp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.Asp.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.DynamicDataContext.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.DynamicDataContext.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.Ef6.SqlServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.Ef6.SqlServer.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.EfCore.PostgreSql.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.EfCore.PostgreSql.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.EfCore.SqlServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.EfCore.SqlServer.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.GraphQL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.GraphQL.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.InMemory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.InMemory.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.Linq2Db.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.Linq2Db.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.Wcf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.Wcf.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.Test.sln -------------------------------------------------------------------------------- /sln/OdataToEntity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/sln/OdataToEntity.sln -------------------------------------------------------------------------------- /source/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/Directory.Build.targets -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/ODataPrimitiveResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/ODataPrimitiveResult.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/ODataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/ODataResult.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OdataToEntity.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OdataToEntity.AspNetCore.csproj -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeAspHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeAspHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeAspQueryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeAspQueryParser.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeBatchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeBatchController.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeBatchFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeBatchFilterAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeControllerConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeControllerConvention.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeDataContext.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeHttpRequestHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeHttpRequestHeaders.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeMetadataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeMetadataController.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeMiddleware.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeMiddlewareExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeMiddlewareExtension.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OePageMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OePageMiddleware.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/OeRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/OeRouter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.AspNetCore/UriHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.AspNetCore/UriHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Ef6/DummyCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Ef6/DummyCommandBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Ef6/OdataToEntity.Ef6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Ef6/OdataToEntity.Ef6.csproj -------------------------------------------------------------------------------- /source/OdataToEntity.Ef6/OeEf6AsyncEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Ef6/OeEf6AsyncEnumerator.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Ef6/OeEf6DataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Ef6/OeEf6DataAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Ef6/OeEf6DataAdapterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Ef6/OeEf6DataAdapterExtension.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Ef6/OeEf6EdmModelMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Ef6/OeEf6EdmModelMetadataProvider.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Ef6/OeEf6EnumerableToQuerableVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Ef6/OeEf6EnumerableToQuerableVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Ef6/OeEf6OperationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Ef6/OeEf6OperationAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/DynamicDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/DynamicDataAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/DynamicDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/DynamicDbContext.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/DynamicMiddlewareHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/DynamicMiddlewareHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/DynamicTypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/DynamicTypeDefinition.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/DynamicTypeDefinitionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/DynamicTypeDefinitionManager.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/DynamicTypeDefinitionManagerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/DynamicTypeDefinitionManagerFactory.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/EmitDynamicTypeDefinitionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/EmitDynamicTypeDefinitionManager.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/InformationSchemaSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/InformationSchemaSettings.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/MySqlModelCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/MySqlModelCustomizer.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/MySqlSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/MySqlSchema.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/MySqlSqlGenerationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/MySqlSqlGenerationHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/Navigation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/Navigation.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/PostgreSqlModelCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/PostgreSqlModelCustomizer.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/PostgreSqlSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/PostgreSqlSchema.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/ProviderSpecificSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/ProviderSpecificSchema.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SchemaCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SchemaCache.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SchemaCacheFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SchemaCacheFactory.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SchemaTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SchemaTables.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SqlServerModelCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SqlServerModelCustomizer.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SqlServerSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/InformationSchema/SqlServerSchema.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicConventionSetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicConventionSetBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicDependentPropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicDependentPropertyInfo.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicEdmModelMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicEdmModelMetadataProvider.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicMetadataProvider.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicModelBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicPropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/ModelBuilder/DynamicPropertyInfo.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/OdataToEntity.EfCore.DynamicDataContext.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/OdataToEntity.EfCore.DynamicDataContext.csproj -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/TableFullName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/TableFullName.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/Types/DynamicDbContexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/Types/DynamicDbContexts.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore.DynamicDataContext/Types/DynamicTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore.DynamicDataContext/Types/DynamicTypes.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/EfCoreExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/EfCoreExtension.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OdataToEntity.EfCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OdataToEntity.EfCore.csproj -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OeDbQueryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OeDbQueryAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OeDbSetAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OeDbSetAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OeEfCoreDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OeEfCoreDataAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OeEfCoreDataAdapterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OeEfCoreDataAdapterExtension.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OeEfCoreDataReaderAsyncEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OeEfCoreDataReaderAsyncEnumerator.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OeEfCoreEdmModelMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OeEfCoreEdmModelMetadataProvider.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OeEfCoreOperationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OeEfCoreOperationAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/OeMySqlEfCoreOperationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/OeMySqlEfCoreOperationAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/Postgresql/OeDateTimeOffsetMembersVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/Postgresql/OeDateTimeOffsetMembersVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/Postgresql/OeEfCorePostgreSqlDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/Postgresql/OeEfCorePostgreSqlDataAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.EfCore/Postgresql/OePostgreSqlEfCoreOperationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.EfCore/Postgresql/OePostgreSqlEfCoreOperationAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.GraphQL/GraphqlExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.GraphQL/GraphqlExtension.cs -------------------------------------------------------------------------------- /source/OdataToEntity.GraphQL/OdataToEntity.GraphQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.GraphQL/OdataToEntity.GraphQL.csproj -------------------------------------------------------------------------------- /source/OdataToEntity.GraphQL/OeEntitySetResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.GraphQL/OeEntitySetResolver.cs -------------------------------------------------------------------------------- /source/OdataToEntity.GraphQL/OeGraphTypeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.GraphQL/OeGraphTypeBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity.GraphQL/OeGraphqlAstToODataUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.GraphQL/OeGraphqlAstToODataUri.cs -------------------------------------------------------------------------------- /source/OdataToEntity.GraphQL/OeGraphqlAsyncEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.GraphQL/OeGraphqlAsyncEnumerator.cs -------------------------------------------------------------------------------- /source/OdataToEntity.GraphQL/OeGraphqlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.GraphQL/OeGraphqlParser.cs -------------------------------------------------------------------------------- /source/OdataToEntity.GraphQL/OeSchemaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.GraphQL/OeSchemaBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/EntityUpdateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/EntityUpdateHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/OdataToEntity.Linq2Db.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/OdataToEntity.Linq2Db.csproj -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/OeLinq2DbDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/OeLinq2DbDataAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/OeLinq2DbDataAdapterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/OeLinq2DbDataAdapterExtension.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/OeLinq2DbDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/OeLinq2DbDataContext.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/OeLinq2DbEdmModelMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/OeLinq2DbEdmModelMetadataProvider.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/OeLinq2DbOperationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/OeLinq2DbOperationAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/OeLinq2DbSetAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/OeLinq2DbSetAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/OeLinq2DbTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/OeLinq2DbTable.cs -------------------------------------------------------------------------------- /source/OdataToEntity.Linq2Db/SetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity.Linq2Db/SetBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeBoundFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeBoundFunctionAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeBoundFunctionParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeBoundFunctionParameter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeDataAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeDataAdapterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeDataAdapterExtension.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeDbEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeDbEnumerator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeEntityAsyncEnumeratorAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeEntityAsyncEnumeratorAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeEntityDbEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeEntityDbEnumerator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeEntitySetAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeEntitySetAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Db/OeOperationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Db/OeOperationAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/InMemoryConstantToVariableVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/InMemoryConstantToVariableVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/InMemoryDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/InMemoryDataAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/InMemoryEntitySetAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/InMemoryEntitySetAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/InMemoryExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/InMemoryExecutor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/InMemoryOperationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/InMemoryOperationAdapter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/InMemoryQueryableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/InMemoryQueryableWrapper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/InMemoryScalarExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/InMemoryScalarExecutor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/InMemorySourceVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/InMemorySourceVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/InMemory/NullPropagationVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/InMemory/NullPropagationVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/AllowNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/AllowNullAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/AsyncEnumeratorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/AsyncEnumeratorHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/CompositeReadStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/CompositeReadStream.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/FastActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/FastActivator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/OeDataTableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/OeDataTableHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/OeEntryEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/OeEntryEqualityComparer.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/OeInMemoryMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/OeInMemoryMessage.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/OeOdataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/OeOdataValue.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Infrastructure/OeShadowPropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Infrastructure/OeShadowPropertyInfo.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/EntityTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/EntityTypeInfo.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/FKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/FKeyInfo.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/ManyToManyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/ManyToManyBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/ManyToManyJoinDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/ManyToManyJoinDescription.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/OeEdmModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/OeEdmModelBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/OeEdmModelMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/OeEdmModelMetadataProvider.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/OeEdmNavigationShadowProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/OeEdmNavigationShadowProperty.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/OeEdmStructuralShadowProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/OeEdmStructuralShadowProperty.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/OeJsonSchemaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/OeJsonSchemaGenerator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/OeModelBuilderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/OeModelBuilderHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/OeOperationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/OeOperationConfiguration.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/OeValueAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/OeValueAnnotation.cs -------------------------------------------------------------------------------- /source/OdataToEntity/ModelBuilder/PrimitiveTypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/ModelBuilder/PrimitiveTypeHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/OdataToEntity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/OdataToEntity.csproj -------------------------------------------------------------------------------- /source/OdataToEntity/OeAnnotationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/OeAnnotationExtensions.cs -------------------------------------------------------------------------------- /source/OdataToEntity/OeEdmClrHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/OeEdmClrHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/OeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/OeParser.cs -------------------------------------------------------------------------------- /source/OdataToEntity/OeRequestHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/OeRequestHeaders.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/OeCacheContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/OeCacheContext.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/OeCacheContextEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/OeCacheContextEqualityComparer.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/OeQueryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/OeQueryCache.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/OeQueryCacheDbParameterDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/OeQueryCacheDbParameterDefinition.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/OeQueryCacheDbParameterValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/OeQueryCacheDbParameterValue.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/OeQueryCacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/OeQueryCacheItem.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/UriCompare/EnumerableComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/UriCompare/EnumerableComparer.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/UriCompare/ODataPathComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/UriCompare/ODataPathComparer.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/UriCompare/OeCacheComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/UriCompare/OeCacheComparer.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/UriCompare/OeCacheComparerParameterValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/UriCompare/OeCacheComparerParameterValues.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/UriCompare/OeComparerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/UriCompare/OeComparerExtension.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/UriCompare/OeQueryNodeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/UriCompare/OeQueryNodeComparer.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Cache/UriCompare/OeQueryNodeHashVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Cache/UriCompare/OeQueryNodeHashVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeBatchMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeBatchMessage.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeBatchParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeBatchParser.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeDynamicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeDynamicType.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeEntryFactory.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeEntryFactoryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeEntryFactoryFactory.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeEnumerableStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeEnumerableStub.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeExpressionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeExpressionBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeExpressionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeExpressionHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeFunctionBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeFunctionBinder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeGetParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeGetParser.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeMethodInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeMethodInfoHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeNavigationEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeNavigationEntryFactory.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeOperationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeOperationHelper.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeOperationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeOperationMessage.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeParseNavigationSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeParseNavigationSegment.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OePostParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OePostParser.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OePropertyAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OePropertyAccessor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeQueryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeQueryContext.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeQueryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeQueryExpression.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeQueryNodeTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeQueryNodeTranslator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/OeSkipTokenParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/OeSkipTokenParser.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeAggregationEntryFactoryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeAggregationEntryFactoryFactory.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeAggregationTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeAggregationTranslator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeCrossApplyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeCrossApplyBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeJoinBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeJoinBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeNextLinkSelectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeNextLinkSelectItem.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeOrderByTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeOrderByTranslator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OePageSelectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OePageSelectItem.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OePropertyTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OePropertyTranslator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeSelectEntryFactoryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeSelectEntryFactoryFactory.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeSelectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeSelectItem.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeSelectItemTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeSelectItemTranslator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeSelectTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeSelectTranslator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeSelectTranslatorParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeSelectTranslatorParameters.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Translators/OeSkipTokenTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Translators/OeSkipTokenTranslator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/OeCollectionNavigationVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/OeCollectionNavigationVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/OeConstantToParameterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/OeConstantToParameterVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/OeConstantToVariableVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/OeConstantToVariableVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/OeEnumerableToQuerableVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/OeEnumerableToQuerableVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/OeParameterToVariableVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/OeParameterToVariableVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/OeQueryNodeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/OeQueryNodeVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/OeSingleNavigationVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/OeSingleNavigationVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/ReplaceParameterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/ReplaceParameterVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Parsers/Visitors/SelectNullableVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Parsers/Visitors/SelectNullableVisitor.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/EntityTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/EntityTypeConfiguration.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OeAttributeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OeAttributeReader.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OeModelBoundAttributeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OeModelBoundAttributeBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OeModelBoundFluentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OeModelBoundFluentBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OeModelBoundKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OeModelBoundKind.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OeModelBoundSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OeModelBoundSettings.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OeModelBoundSettingsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OeModelBoundSettingsBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OeModelBoundValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OeModelBoundValidator.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OePageNextLinkSelectItemBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OePageNextLinkSelectItemBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/OeSelectExpandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/OeSelectExpandBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/Builder/PropertyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/Builder/PropertyConfiguration.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/CountAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/CountAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/ExpandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/ExpandAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/FilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/FilterAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/OeModelBoundProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/OeModelBoundProvider.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/OrderByAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/OrderByAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/PageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/PageAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/QueryOptionSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/QueryOptionSetting.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/SelectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/SelectAttribute.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Query/SelectExpandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Query/SelectExpandType.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Writers/OeBatchWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Writers/OeBatchWriter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Writers/OeGetWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Writers/OeGetWriter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Writers/OeNextPageLinkBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Writers/OeNextPageLinkBuilder.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Writers/OeODataWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Writers/OeODataWriter.cs -------------------------------------------------------------------------------- /source/OdataToEntity/Writers/OeUriHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/source/OdataToEntity/Writers/OeUriHelper.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/BatchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/BatchTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/Connected Services/ODataClient/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/Connected Services/ODataClient/ConnectedService.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/Connected Services/ODataClient/ODataClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/Connected Services/ODataClient/ODataClient.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/DbFixtureInitDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/DbFixtureInitDb.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/DbFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/DbFunctionAttribute.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/FactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/FactAttribute.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/ODataClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/ODataClient.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/OdataToEntity.Test.AspClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/OdataToEntity.Test.AspClient.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/OeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/OeResponse.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/ProcedureTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/ProcedureTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/SelectTest2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/SelectTest2.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/TypeMapperVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspClient/TypeMapperVisitor.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/BatchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/BatchController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/CustomerShippingAddressController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/CustomerShippingAddressController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/CustomersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/CustomersController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/ManyColumnsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/ManyColumnsController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/ManyColumnsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/ManyColumnsViewController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/MetadataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/MetadataController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/OrderContextController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/OrderContextController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/OrderItemsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/OrderItemsController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/OrderItemsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/OrderItemsViewController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/ShippingAddressesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Controllers/ShippingAddressesController.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/OdataToEntity.Test.AspMvcServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/OdataToEntity.Test.AspMvcServer.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/Startup.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/appsettings.Development.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspMvcServer/appsettings.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/OdataToEntity.Test.AspServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/OdataToEntity.Test.AspServer.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/OrderContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/OrderContextOptions.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/Startup.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Asp/OdataToEntity.Test.AspServer/appsettings.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext.AspServer/InformationSchemaMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext.AspServer/InformationSchemaMapping.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext.AspServer/InformationSchemaMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext.AspServer/InformationSchemaMapping.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext.AspServer/OdataToEntity.Test.DynamicDataContext.AspServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext.AspServer/OdataToEntity.Test.DynamicDataContext.AspServer.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext.AspServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext.AspServer/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext.AspServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext.AspServer/Startup.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext.AspServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext.AspServer/appsettings.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext/DbFixtureInitDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext/DbFixtureInitDb.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext/DynamicSchemaFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext/DynamicSchemaFactory.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext/EnumServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext/EnumServiceProvider.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext/OdataToEntity.Test.DynamicDataContext.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext/OdataToEntity.Test.DynamicDataContext.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext/OwnedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext/OwnedEntity.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.DynamicDataContext/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.DynamicDataContext/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Ef6.SqlServer/EdmModelBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Ef6.SqlServer/EdmModelBuilderTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Ef6.SqlServer/OdataToEntity.Test.Ef6.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Ef6.SqlServer/OdataToEntity.Test.Ef6.SqlServer.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Ef6.SqlServer/OeEf6SqlServerDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Ef6.SqlServer/OeEf6SqlServerDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Ef6.SqlServer/OrderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Ef6.SqlServer/OrderDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Ef6.SqlServer/OrderEf6Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Ef6.SqlServer/OrderEf6Context.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Ef6.SqlServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Ef6.SqlServer/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.PostgreSql/DbFixtureInitDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.PostgreSql/DbFixtureInitDb.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.PostgreSql/OdataToEntity.Test.EfCore.PostgreSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.PostgreSql/OdataToEntity.Test.EfCore.PostgreSql.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.PostgreSql/OeEfCorePostgreSqlDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.PostgreSql/OeEfCorePostgreSqlDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.PostgreSql/OrderContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.PostgreSql/OrderContextOptions.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.PostgreSql/OrderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.PostgreSql/OrderDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.PostgreSql/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.PostgreSql/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/DbFixtureInitDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/DbFixtureInitDb.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/EdmModelBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/EdmModelBuilderTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/OdataToEntity.Test.EfCore.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/OdataToEntity.Test.EfCore.SqlServer.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/OeEfCoreSqlServerDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/OeEfCoreSqlServerDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/OrderContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/OrderContextOptions.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/OrderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/OrderDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/PerformanceCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/PerformanceCacheTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/ProcedureTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/ProcedureTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.EfCore.SqlServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.EfCore.SqlServer/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/DbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/DbFixture.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/OdataToEntity.Test.GraphQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/OdataToEntity.Test.GraphQL.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/OeGraphQLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/OeGraphQLHelper.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/Order2DataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/Order2DataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/StarWars/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/StarWars/Character.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/StarWars/StarWarsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/StarWars/StarWarsContext.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/StarWars/StarWarsDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/StarWars/StarWarsDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/StarWarsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/StarWarsFixture.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/StarWarsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/StarWarsTests.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.GraphQL/TestResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.GraphQL/TestResults.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.InMemory/DbFixtureInitDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.InMemory/DbFixtureInitDb.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.InMemory/InMemoryBatchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.InMemory/InMemoryBatchTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.InMemory/InMemoryOrderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.InMemory/InMemoryOrderContext.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.InMemory/ModelBoundTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.InMemory/ModelBoundTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.InMemory/OdataToEntity.Test.InMemory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.InMemory/OdataToEntity.Test.InMemory.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.InMemory/OrderContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.InMemory/OrderContextOptions.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.InMemory/OrderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.InMemory/OrderDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.InMemory/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.InMemory/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Linq2Db/EdmModelBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Linq2Db/EdmModelBuilderTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Linq2Db/OdataToEntity.Test.Linq2Db.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Linq2Db/OdataToEntity.Test.Linq2Db.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Linq2Db/OeLinq2DbSqlServerDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Linq2Db/OeLinq2DbSqlServerDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Linq2Db/OrderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Linq2Db/OrderDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Linq2Db/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Linq2Db/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Linq2DbModel/OdataToEntity.Test.Linq2DbModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Linq2DbModel/OdataToEntity.Test.Linq2DbModel.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Linq2DbModel/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Linq2DbModel/Order.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/ClientInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/ClientInterceptor.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/OdataToEntity.Test.WcfClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/OdataToEntity.Test.WcfClient.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/OrderContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/OrderContextOptions.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/WcfClientInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfClient/WcfClientInterceptor.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/IOdataWcf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/IOdataWcf.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/OdataToEntity.Test.WcfService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/OdataToEntity.Test.WcfService.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/OdataWcfService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/OdataWcfService.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/OdataWcfServiceBehaviorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/OdataWcfServiceBehaviorAttribute.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/OrderService.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test.Wcf/OdataToEntity.Test.WcfService/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Batches/Add.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Batches/Add.batch -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Batches/Delete.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Batches/Delete.batch -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Batches/ManyColumns.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Batches/ManyColumns.batch -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Batches/Update.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Batches/Update.batch -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/BatchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/BatchTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/EfInclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/EfInclude.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/EnumJsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/EnumJsonReader.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/IncludeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/IncludeVisitor.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/ManyColumnsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/ManyColumnsTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/ModelBoundAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/ModelBoundAttributeTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/ModelBoundTestKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/ModelBoundTestKind.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/OpenTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/OpenTypeConverter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/OpenTypeResponseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/OpenTypeResponseReader.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/PageNextLinkModelBoundBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/PageNextLinkModelBoundBuilder.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/QueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/QueryParameters.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/ResponseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/ResponseReader.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/SelectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/SelectTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/SelectTest2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/SelectTest2.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/TestFixtures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/TestFixtures.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Common/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Common/TestHelper.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/DbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/DbFixture.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/DbFixtureInitDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/DbFixtureInitDb.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Model/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Model/Order.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Model/OrderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Model/OrderContext.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/OdataToEntity.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/OdataToEntity.Test.csproj -------------------------------------------------------------------------------- /test/OdataToEntity.Test/OrderContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/OrderContextOptions.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/OrderDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/OrderDataAdapter.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Program.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/QueryComparerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/QueryComparerTest.cs -------------------------------------------------------------------------------- /test/OdataToEntity.Test/SQLiteVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/OdataToEntity.Test/SQLiteVisitor.cs -------------------------------------------------------------------------------- /test/sql_scripts/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/sql_scripts/mysql.sql -------------------------------------------------------------------------------- /test/sql_scripts/postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/sql_scripts/postgresql.sql -------------------------------------------------------------------------------- /test/sql_scripts/sqlserver.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/sql_scripts/sqlserver.sql -------------------------------------------------------------------------------- /test/sql_scripts/star_wars_sqlserver.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voronov-maxim/OdataToEntity/HEAD/test/sql_scripts/star_wars_sqlserver.sql --------------------------------------------------------------------------------