├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ └── github-actions-atlastest.yml ├── .gitignore ├── BREAKING-CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.md ├── MongoDB.EFCoreProvider.sln ├── MongoDB.EFCoreProvider.sln.DotSettings ├── README.md ├── THIRD-PARTY-NOTICES ├── Versions.props ├── apidocs ├── .gitignore ├── api │ ├── MongoDB.md │ └── index.md ├── docfx.json ├── images │ └── mongodb-logo.svg ├── index.md └── mongo-apidocs │ └── public │ └── main.css ├── createpr.png ├── evergreen ├── build-apidocs.sh ├── download-augmented-sbom.sh ├── evergreen.yml ├── generate-ssdlc-report.sh ├── generate-version.sh ├── install-dependencies.sh ├── pack-packages.sh ├── push-packages.sh ├── run-smoke-tests.sh ├── run-tests.sh ├── sign-packages.sh ├── template_ssdlc_compliance_report.md └── upload-apidocs.sh ├── global.json ├── nuget.config ├── packageIcon.png ├── sbom.json ├── src ├── Directory.Build.props └── MongoDB.EntityFrameworkCore │ ├── ChangeTracking │ ├── ListOfNullableValueTypesComparer.cs │ ├── ListOfReferenceTypesComparer.cs │ ├── ListOfValueTypesComparer.cs │ ├── NullableEqualityComparer.cs │ ├── NullableStringDictionaryComparer.cs │ └── StringDictionaryComparer.cs │ ├── Check.cs │ ├── CryptProvider.cs │ ├── Design │ └── MongoDesignTimeServices.cs │ ├── Diagnostics │ ├── MongoBulkWriteEventData.cs │ ├── MongoEventId.cs │ ├── MongoLoggerExtensions.cs │ ├── MongoLoggerTransactionExtensions.cs │ ├── MongoLoggerUpdateExtensions.cs │ ├── MongoLoggingDefinitions.cs │ ├── MongoQueryEventData.cs │ ├── MongoTransactionEndEventData.cs │ ├── MongoTransactionErrorEventData.cs │ ├── MongoTransactionEventData.cs │ ├── MongoTransactionStartingEventData.cs │ ├── NonCapturingLazyInitializer.cs │ ├── PropertyAndIndexNameEventData.cs │ └── TimeSpanEventData.cs │ ├── DriverTypes │ ├── VectorQuantization.cs │ └── VectorSimilarity.cs │ ├── EnumerableMethods.cs │ ├── ExpressionExtensionMethods.cs │ ├── Extensions │ ├── MongoDatabaseFacadeExtensions.cs │ ├── MongoDbContextOptionsExtensions.cs │ ├── MongoEntityTypeBuilderExtensions.cs │ ├── MongoEntityTypeExtensions.cs │ ├── MongoIndexBuilderExtensions.cs │ ├── MongoIndexExtensions.cs │ ├── MongoModelExtensions.cs │ ├── MongoNavigationExtensions.cs │ ├── MongoPropertiesConfigurationBuilderExtensions.cs │ ├── MongoPropertyBuilderExtensions.cs │ ├── MongoPropertyExtensions.cs │ ├── MongoQueryableExtensions.cs │ ├── MongoServiceCollectionExtensions.cs │ └── QueryableEncryptionBuilderExtensions.cs │ ├── Infrastructure │ ├── IMongoDbContextOptionsBuilderInfrastructure.cs │ ├── IQueryableEncryptionSchemaProvider.cs │ ├── MongoClientSettingsHelper.cs │ ├── MongoDbContextOptionsBuilder.cs │ ├── MongoModelRuntimeInitializer.cs │ ├── MongoModelValidator.cs │ ├── MongoOptionsExtension.cs │ ├── QueryableEncryptionEqualityBuilder.cs │ ├── QueryableEncryptionRangeBuilder.cs │ ├── QueryableEncryptionSchemaGenerator.cs │ ├── QueryableEncryptionSchemaMode.cs │ └── QueryableEncryptionSchemaProvider.cs │ ├── Metadata │ ├── Attributes │ │ └── CollectionAttribute.cs │ ├── BsonRepresentationConfiguration.cs │ ├── Conventions │ │ ├── BsonAttributes │ │ │ ├── BinaryVectorAttributeConvention.cs │ │ │ ├── BsonDateTimeOptionsAttributeConvention.cs │ │ │ ├── BsonDefaultValueAttributeConvention.cs │ │ │ ├── BsonDictionaryOptionsAttributeConvention.cs │ │ │ ├── BsonElementAttributeConvention.cs │ │ │ ├── BsonExtraElementsAttributeConvention.cs │ │ │ ├── BsonGuidRepresentationAttributeConvention.cs │ │ │ ├── BsonIdAttributeConvention.cs │ │ │ ├── BsonIgnoreAttributeConvention.cs │ │ │ ├── BsonIgnoreIfDefaultAttributeConvention.cs │ │ │ ├── BsonIgnoreIfNullAttributeConvention.cs │ │ │ ├── BsonRepresentationAttributeConvention.cs │ │ │ ├── BsonRequiredAttributeConvention.cs │ │ │ ├── BsonSerializationOptionsAttributeConvention.cs │ │ │ ├── BsonSerializerPropertyConvention.cs │ │ │ └── BsonTimeSpanOptionsAttributeConvention.cs │ │ ├── CamelCaseElementNameConvention.cs │ │ ├── CollectionAttributeConvention.cs │ │ ├── CollectionNameFromDbSetConvention.cs │ │ ├── ColumnAttributeConvention.cs │ │ ├── DateTimeKindConvention.cs │ │ ├── IndexNamingConvention.cs │ │ ├── MongoConventionSetBuilder.cs │ │ ├── MongoRelationshipDiscoveryConvention.cs │ │ ├── MongoValueGenerationConvention.cs │ │ ├── NotSupportedPropertyAttributeConvention.cs │ │ ├── PrimaryKeyDiscoveryConvention.cs │ │ └── TableAttributeConvention.cs │ ├── InternalIndexExtensions.cs │ ├── InternalKeyExtensions.cs │ ├── MongoAnnotationNames.cs │ ├── MongoDatabaseCreationOptions.cs │ ├── VectorIndexBuilder.cs │ ├── VectorIndexBuilder`.cs │ ├── VectorIndexOptions.cs │ └── VectorQueryOptions.cs │ ├── MongoDB.EntityFrameworkCore.csproj │ ├── NamingHelperMethods.cs │ ├── Query │ ├── Expressions │ │ ├── CollectionShaperExpression.cs │ │ ├── EntityProjectionExpression.cs │ │ ├── EntityTypedExpression.cs │ │ ├── IAccessExpression.cs │ │ ├── MongoCollectionExpression.cs │ │ ├── MongoQueryExpression.cs │ │ ├── ObjectAccessExpression.cs │ │ ├── ObjectArrayProjectionExpression.cs │ │ ├── ProjectionExpression.cs │ │ └── RootReferenceExpression.cs │ ├── Factories │ │ ├── MongoQueryCompilationContextFactory.cs │ │ ├── MongoQueryContextFactory.cs │ │ ├── MongoQueryTranslationPostprocessorFactory.cs │ │ ├── MongoQueryTranslationPreprocessorFactory.cs │ │ ├── MongoQueryableMethodTranslatingExpressionVisitorFactory.cs │ │ └── MongoShapedQueryCompilingExpressionVisitorFactory.cs │ ├── MongoExecutableQuery.cs │ ├── MongoQueryCompilationContext.cs │ ├── MongoQueryContext.cs │ ├── MongoQueryTranslationPostprocessor.cs │ ├── MongoQueryTranslationPreprocessor.cs │ ├── QueryingEnumerable.cs │ └── Visitors │ │ ├── BsonDocumentInjectingExpressionVisitor.cs │ │ ├── Dependencies │ │ └── MongoShapedQueryCompilingExpressionVisitorDependencies.cs │ │ ├── EntityFrameworkDetourExpressionVisitor.cs │ │ ├── FinalPredicateHoistingVisitor.cs │ │ ├── MongoEFToLinqTranslatingExpressionVisitor.cs │ │ ├── MongoProjectionBindingExpressionVisitor.cs │ │ ├── MongoProjectionBindingRemovingExpressionVisitor.cs │ │ ├── MongoQueryableMethodTranslatingExpressionVisitor.cs │ │ └── MongoShapedQueryCompilingExpressionVisitor.cs │ ├── QueryableEncryptionType.cs │ ├── Serializers │ ├── BsonSerializerFactory.cs │ ├── EntitySerializer.cs │ ├── MongoEFDiscriminator.cs │ └── ValueConverterSerializer.cs │ ├── Storage │ ├── BsonBinding.cs │ ├── BsonTypeHelper.cs │ ├── IMongoClientWrapper.cs │ ├── IMongoDatabaseCreator.cs │ ├── IMongoTransactionManager.cs │ ├── MongoClientWrapper.cs │ ├── MongoDatabaseCreator.cs │ ├── MongoDatabaseWrapper.cs │ ├── MongoTransaction.cs │ ├── MongoTransactionEnlistmentManager.cs │ ├── MongoTransactionManager.cs │ ├── MongoTypeMapping.cs │ ├── MongoTypeMappingSource.cs │ ├── MongoUpdate.cs │ ├── MongoUpdateBatch.cs │ ├── RowVersion.cs │ └── ValueConversion │ │ ├── Decimal128DecimalConverter.cs │ │ ├── Decimal128ToDecimalConverter.cs │ │ ├── DecimalToDecimal128Converter.cs │ │ ├── MongoValueConverterSelector.cs │ │ ├── ObjectIdToStringConverter.cs │ │ ├── StringObjectIdConverter.cs │ │ └── StringToObjectIdConverter.cs │ ├── TypeExtensionMethods.cs │ └── ValueGeneration │ ├── MongoValueGeneratorSelector.cs │ ├── ObjectIdValueGenerator.cs │ └── StringObjectIdValueGenerator.cs ├── syncfork.png └── tests ├── Directory.Build.props ├── MongoDB.EntityFrameworkCore.FunctionalTests ├── Compatibility │ └── StoredDataStillReadableTests.cs ├── ConnectionTests.cs ├── Design │ ├── CompiledModelTests.cs │ └── Generated │ │ ├── EF8 │ │ ├── EveryTypeEntityType.cs │ │ ├── OwnedEntityEntityType.cs │ │ ├── SimpleContextModel.cs │ │ └── SimpleContextModelBuilder.cs │ │ └── EF9 │ │ ├── EveryTypeEntityType.cs │ │ ├── OwnedEntityEntityType.cs │ │ ├── SimpleContextAssemblyAttributes.cs │ │ ├── SimpleContextModel.cs │ │ └── SimpleContextModelBuilder.cs ├── Encryption │ ├── EncryptionTests.cs │ ├── EncryptionTestsBase.cs │ └── QueryableEncryptionTests.cs ├── Entities │ └── Guides │ │ ├── GuidesDbContext.cs │ │ └── Planet.cs ├── Exerciser.cs ├── IgnoreCacheKeyFactory.cs ├── LoggingTests.cs ├── Mapping │ ├── BsonRepresentationTests.cs │ ├── ClrTypeMappingTests.cs │ ├── DiscriminatorTests.cs │ ├── ElementNameTests.cs │ ├── NavigationProxyTests.cs │ ├── ShadowPropertyTests.cs │ └── ValueConverterTests.cs ├── Metadata │ └── Conventions │ │ ├── BsonAttributes │ │ ├── BsonElementAttributeConventionTests.cs │ │ └── BsonIgnoreAttributeConventionTests.cs │ │ ├── CamelCaseElementNameConventionTests.cs │ │ ├── ColumnAttributeConventionTests.cs │ │ └── PrimaryKeyDiscoveryConventionTests.cs ├── MongoDB.EntityFrameworkCore.FunctionalTests.csproj ├── Query │ ├── CollectionsResponseTests.cs │ ├── CompositeKeyQueryTests.cs │ ├── FindTests.cs │ ├── FirstSingleTests.cs │ ├── GlobalQueryTests.cs │ ├── InvalidQueryTranslationTests.cs │ ├── MqlMethodTests.cs │ ├── OwnedEntityTests.cs │ ├── PrimitiveCollectionTests.cs │ ├── ProjectionTests.cs │ ├── SkipTakeOrderingTests.cs │ ├── TopScalarTests.cs │ ├── TopSetTests.cs │ ├── UnsupportedQueryTests.cs │ ├── WhereDictionaryTests.cs │ └── WhereTests.cs ├── Serialization │ ├── BaseSerializationTests.cs │ ├── BooleanSerializationTests.cs │ ├── ByteArraySerializationTests.cs │ ├── CollectionSerializationTests.cs │ ├── DateAndTimeSerializationTests.cs │ ├── DecimalSerializationTests.cs │ ├── DictionarySerializationTests.cs │ ├── FloatingSerializationTests.cs │ ├── GuidSerializationTests.cs │ ├── IntegerSerializationTests.cs │ ├── MongoTypeSerializationTests.cs │ ├── StringSerializationTests.cs │ └── UnsignedIntegerSerializationTests.cs ├── Storage │ ├── IndexTests.cs │ ├── MongoDatabaseCreatorTests.cs │ └── TransactionTests.cs ├── Update │ ├── AddEntityTests.cs │ ├── CompositeKeyCrudTests.cs │ ├── ConcurrencyCheckTests.cs │ ├── ContextTests.cs │ ├── DbContextPoolTests.cs │ ├── DeleteEntityTests.cs │ ├── OwnedNavigationPropertyCrudTests.cs │ ├── RowVersionTests.cs │ ├── SaveChangesTransactionTests.cs │ ├── SimpleKeyCrudTests.cs │ └── UpdateEntityTests.cs ├── Usings.cs ├── Utilities │ ├── AtlasFact.cs │ ├── AtlasTemporaryDatabaseFixture.cs │ ├── AtlasTheory.cs │ ├── EnumerableOnlyWrapper.cs │ ├── ExtensionMethods.cs │ ├── ExternalDatabaseTestServer.cs │ ├── IgnoreCacheKeyFactory.cs │ ├── MongoCondition.cs │ ├── MongoDbAtlasBuilder.cs │ ├── MongoDbAtlasContainer.cs │ ├── NamedContainer.cs │ ├── ReadOnlySampleGuidesFixture.cs │ ├── SampleGuides.cs │ ├── SampleGuidesFixture.cs │ ├── SingleEntityDbContext.cs │ ├── SpyLogging.cs │ ├── TemporaryDatabaseFixture.cs │ ├── TemporaryDatabaseFixtureBase.cs │ ├── TestContainersTestServer.cs │ ├── TestDatabaseNamer.cs │ └── TestServer.cs └── ValueGeneration │ └── ValueGenerationTests.cs ├── MongoDB.EntityFrameworkCore.SpecificationTests ├── Extensions │ └── MongoDbContextOptionsExtensionsTest.cs ├── Mapping │ └── BuiltInDataTypesMongoTest.cs ├── Metadata │ ├── Conventions │ │ └── MongoValueGenerationConventionTests.cs │ └── MongoBuilderExtensionTest.cs ├── MongoApiConsistencyTest.cs ├── MongoDB.EntityFrameworkCore.SpecificationTests.csproj ├── MongoTestHelpers.cs ├── Query │ ├── AdHocJsonQueryMongoTest.cs │ ├── NorthwindAggregateOperatorsQueryMongoTest.cs │ ├── NorthwindAsNoTrackingQueryMongoTest.cs │ ├── NorthwindAsTrackingQueryMongoTest.cs │ ├── NorthwindChangeTrackingQueryMongoTest.cs │ ├── NorthwindCompiledQueryMongoTest.cs │ ├── NorthwindDbFunctionsQueryMongoTest.cs │ ├── NorthwindEFPropertyIncludeQueryMongoTest.cs │ ├── NorthwindFunctionsQueryMongoTest.cs │ ├── NorthwindGroupByQueryMongoTest.cs │ ├── NorthwindIncludeNoTrackingQueryMongoTest.cs │ ├── NorthwindIncludeQueryMongoTest.cs │ ├── NorthwindJoinQueryMongoTest.cs │ ├── NorthwindKeylessEntitiesQueryMongoTest.cs │ ├── NorthwindMiscellaneousQueryMongoTest.cs │ ├── NorthwindNavigationsQueryMongoTest.cs │ ├── NorthwindQueryFiltersQueryMongoTest.cs │ ├── NorthwindQueryMongoFixture.cs │ ├── NorthwindQueryTaggingQueryMongoTest.cs │ ├── NorthwindSelectQueryMongoTest.cs │ ├── NorthwindSetOperationsQueryMongoTest.cs │ ├── NorthwindStringIncludeQueryMongoTest.cs │ ├── NorthwindWhereQueryMongoTest.cs │ ├── VectorSearchExactMongoTest.cs │ ├── VectorSearchMongoTest.cs │ └── VectorSearchMongoTestBase.cs ├── Usings.cs ├── Utilities │ ├── MongoConditionAttribute.cs │ ├── MongoTestStore.cs │ ├── MongoTestStoreFactory.cs │ └── TestMqlLoggerFactory.cs └── ValueGeneration │ └── MongoValueGeneratorSelectorTests.cs └── MongoDB.EntityFrameworkCore.UnitTests ├── Extensions ├── MongoPropertiesConfigurationBuilderExtensionsTests.cs └── MongoPropertyBuilderExtensionsTests.cs ├── Infrastructure ├── MongoModelValidatorTests.cs └── MongoOptionsExtensionTest.cs ├── Metadata ├── Attributes │ └── CollectionAttributeTests.cs └── Conventions │ ├── BsonAttributes │ ├── BsonDateTimeOptionsAttributeConventionTests.cs │ ├── BsonElementAttributeConventionTests.cs │ ├── BsonIdAttributeConventionTests.cs │ ├── BsonIgnoreAttributeConventionTests.cs │ ├── BsonRepresentationAttributeConventionTests.cs │ ├── BsonRequiredAttributeConventionTests.cs │ └── BsonUnsupportedAttributesConventionTests.cs │ ├── CollectionAttributeConventionTests.cs │ ├── CollectionNameFromDbSetConventionTests.cs │ ├── ColumnAttributeConventionTests.cs │ ├── DateTimeKindConventionTests.cs │ ├── MongoConventionSetBuilderTest.cs │ ├── PrimaryKeyDiscoveryConventionTests.cs │ └── TableAttributeConventionTests.cs ├── MongoDB.EntityFrameworkCore.UnitTests.csproj ├── NamingHelperMethodTests.cs ├── Query └── Expressions │ ├── MongoCollectionExpressionTests.cs │ └── MongoQueryExpressionTests.cs ├── Storage └── BsonBindingTests.cs ├── TestUtilities ├── SingleEntityDbContext.cs └── Utilities.cs ├── Usings.cs └── ValueGeneration ├── ObjectIdValueGeneratorTests.cs └── StringObjectIdValueGeneratorTests.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global owner for repo 2 | * @mongodb/dbx-csharp-dotnet 3 | -------------------------------------------------------------------------------- /.github/workflows/github-actions-atlastest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/.github/workflows/github-actions-atlastest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /BREAKING-CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/BREAKING-CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MongoDB.EFCoreProvider.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/MongoDB.EFCoreProvider.sln -------------------------------------------------------------------------------- /MongoDB.EFCoreProvider.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/MongoDB.EFCoreProvider.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/THIRD-PARTY-NOTICES -------------------------------------------------------------------------------- /Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/Versions.props -------------------------------------------------------------------------------- /apidocs/.gitignore: -------------------------------------------------------------------------------- 1 | .manifest 2 | api/**.yml 3 | -------------------------------------------------------------------------------- /apidocs/api/MongoDB.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_url: ../index.html 3 | --- 4 | -------------------------------------------------------------------------------- /apidocs/api/index.md: -------------------------------------------------------------------------------- 1 | # MongoDB EF Core Provider API Reference -------------------------------------------------------------------------------- /apidocs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/apidocs/docfx.json -------------------------------------------------------------------------------- /apidocs/images/mongodb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/apidocs/images/mongodb-logo.svg -------------------------------------------------------------------------------- /apidocs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_url: api/index.html 3 | --- 4 | -------------------------------------------------------------------------------- /apidocs/mongo-apidocs/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/apidocs/mongo-apidocs/public/main.css -------------------------------------------------------------------------------- /createpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/createpr.png -------------------------------------------------------------------------------- /evergreen/build-apidocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/build-apidocs.sh -------------------------------------------------------------------------------- /evergreen/download-augmented-sbom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/download-augmented-sbom.sh -------------------------------------------------------------------------------- /evergreen/evergreen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/evergreen.yml -------------------------------------------------------------------------------- /evergreen/generate-ssdlc-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/generate-ssdlc-report.sh -------------------------------------------------------------------------------- /evergreen/generate-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/generate-version.sh -------------------------------------------------------------------------------- /evergreen/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/install-dependencies.sh -------------------------------------------------------------------------------- /evergreen/pack-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/pack-packages.sh -------------------------------------------------------------------------------- /evergreen/push-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/push-packages.sh -------------------------------------------------------------------------------- /evergreen/run-smoke-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/run-smoke-tests.sh -------------------------------------------------------------------------------- /evergreen/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/run-tests.sh -------------------------------------------------------------------------------- /evergreen/sign-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/sign-packages.sh -------------------------------------------------------------------------------- /evergreen/template_ssdlc_compliance_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/template_ssdlc_compliance_report.md -------------------------------------------------------------------------------- /evergreen/upload-apidocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/evergreen/upload-apidocs.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/nuget.config -------------------------------------------------------------------------------- /packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/packageIcon.png -------------------------------------------------------------------------------- /sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/sbom.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ChangeTracking/ListOfNullableValueTypesComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ChangeTracking/ListOfNullableValueTypesComparer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ChangeTracking/ListOfReferenceTypesComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ChangeTracking/ListOfReferenceTypesComparer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ChangeTracking/ListOfValueTypesComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ChangeTracking/ListOfValueTypesComparer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ChangeTracking/NullableEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ChangeTracking/NullableEqualityComparer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ChangeTracking/NullableStringDictionaryComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ChangeTracking/NullableStringDictionaryComparer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ChangeTracking/StringDictionaryComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ChangeTracking/StringDictionaryComparer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Check.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/CryptProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/CryptProvider.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Design/MongoDesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Design/MongoDesignTimeServices.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoBulkWriteEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoBulkWriteEventData.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoEventId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoEventId.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoLoggerExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoLoggerTransactionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoLoggerTransactionExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoLoggerUpdateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoLoggerUpdateExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoLoggingDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoLoggingDefinitions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoQueryEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoQueryEventData.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoTransactionEndEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoTransactionEndEventData.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoTransactionErrorEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoTransactionErrorEventData.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoTransactionEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoTransactionEventData.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/MongoTransactionStartingEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/MongoTransactionStartingEventData.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/NonCapturingLazyInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/NonCapturingLazyInitializer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/PropertyAndIndexNameEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/PropertyAndIndexNameEventData.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Diagnostics/TimeSpanEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Diagnostics/TimeSpanEventData.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/DriverTypes/VectorQuantization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/DriverTypes/VectorQuantization.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/DriverTypes/VectorSimilarity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/DriverTypes/VectorSimilarity.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/EnumerableMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/EnumerableMethods.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ExpressionExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ExpressionExtensionMethods.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoDatabaseFacadeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoDatabaseFacadeExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoDbContextOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoDbContextOptionsExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoEntityTypeBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoEntityTypeBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoEntityTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoEntityTypeExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoIndexBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoIndexBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoIndexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoIndexExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoModelExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoNavigationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoNavigationExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoPropertiesConfigurationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoPropertiesConfigurationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoPropertyBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoPropertyBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoPropertyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoPropertyExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoQueryableExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/MongoServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/MongoServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Extensions/QueryableEncryptionBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Extensions/QueryableEncryptionBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/IMongoDbContextOptionsBuilderInfrastructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/IMongoDbContextOptionsBuilderInfrastructure.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/IQueryableEncryptionSchemaProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/IQueryableEncryptionSchemaProvider.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/MongoClientSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/MongoClientSettingsHelper.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/MongoDbContextOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/MongoDbContextOptionsBuilder.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/MongoModelRuntimeInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/MongoModelRuntimeInitializer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/MongoModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/MongoModelValidator.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/MongoOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/MongoOptionsExtension.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionEqualityBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionEqualityBuilder.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionRangeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionRangeBuilder.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionSchemaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionSchemaGenerator.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionSchemaMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionSchemaMode.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionSchemaProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Infrastructure/QueryableEncryptionSchemaProvider.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Attributes/CollectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Attributes/CollectionAttribute.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/BsonRepresentationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/BsonRepresentationConfiguration.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BinaryVectorAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BinaryVectorAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonDateTimeOptionsAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonDateTimeOptionsAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonDefaultValueAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonDefaultValueAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonDictionaryOptionsAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonDictionaryOptionsAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonElementAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonElementAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonExtraElementsAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonExtraElementsAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonGuidRepresentationAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonGuidRepresentationAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonIdAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonIdAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonIgnoreAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonIgnoreAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonIgnoreIfDefaultAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonIgnoreIfDefaultAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonIgnoreIfNullAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonIgnoreIfNullAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonRepresentationAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonRepresentationAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonRequiredAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonRequiredAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonSerializationOptionsAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonSerializationOptionsAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonSerializerPropertyConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonSerializerPropertyConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonTimeSpanOptionsAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/BsonAttributes/BsonTimeSpanOptionsAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/CamelCaseElementNameConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/CamelCaseElementNameConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/CollectionAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/CollectionAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/CollectionNameFromDbSetConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/CollectionNameFromDbSetConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/ColumnAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/ColumnAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/DateTimeKindConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/DateTimeKindConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/IndexNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/IndexNamingConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/MongoConventionSetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/MongoConventionSetBuilder.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/MongoRelationshipDiscoveryConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/MongoRelationshipDiscoveryConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/MongoValueGenerationConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/MongoValueGenerationConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/NotSupportedPropertyAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/NotSupportedPropertyAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/PrimaryKeyDiscoveryConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/PrimaryKeyDiscoveryConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/Conventions/TableAttributeConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/Conventions/TableAttributeConvention.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/InternalIndexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/InternalIndexExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/InternalKeyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/InternalKeyExtensions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/MongoAnnotationNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/MongoAnnotationNames.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/MongoDatabaseCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/MongoDatabaseCreationOptions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/VectorIndexBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/VectorIndexBuilder.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/VectorIndexBuilder`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/VectorIndexBuilder`.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/VectorIndexOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/VectorIndexOptions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Metadata/VectorQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Metadata/VectorQueryOptions.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/MongoDB.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/MongoDB.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/NamingHelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/NamingHelperMethods.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/CollectionShaperExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/CollectionShaperExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/EntityProjectionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/EntityProjectionExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/EntityTypedExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/EntityTypedExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/IAccessExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/IAccessExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/MongoCollectionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/MongoCollectionExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/MongoQueryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/MongoQueryExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/ObjectAccessExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/ObjectAccessExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/ObjectArrayProjectionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/ObjectArrayProjectionExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/ProjectionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/ProjectionExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Expressions/RootReferenceExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Expressions/RootReferenceExpression.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryCompilationContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryCompilationContextFactory.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryContextFactory.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryTranslationPostprocessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryTranslationPostprocessorFactory.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryTranslationPreprocessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryTranslationPreprocessorFactory.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryableMethodTranslatingExpressionVisitorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Factories/MongoQueryableMethodTranslatingExpressionVisitorFactory.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Factories/MongoShapedQueryCompilingExpressionVisitorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Factories/MongoShapedQueryCompilingExpressionVisitorFactory.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/MongoExecutableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/MongoExecutableQuery.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/MongoQueryCompilationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/MongoQueryCompilationContext.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/MongoQueryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/MongoQueryContext.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/MongoQueryTranslationPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/MongoQueryTranslationPostprocessor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/MongoQueryTranslationPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/MongoQueryTranslationPreprocessor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/QueryingEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/QueryingEnumerable.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/BsonDocumentInjectingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/BsonDocumentInjectingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/Dependencies/MongoShapedQueryCompilingExpressionVisitorDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/Dependencies/MongoShapedQueryCompilingExpressionVisitorDependencies.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/EntityFrameworkDetourExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/EntityFrameworkDetourExpressionVisitor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/FinalPredicateHoistingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/FinalPredicateHoistingVisitor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoEFToLinqTranslatingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoEFToLinqTranslatingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoProjectionBindingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoProjectionBindingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoProjectionBindingRemovingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoProjectionBindingRemovingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoQueryableMethodTranslatingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoQueryableMethodTranslatingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoShapedQueryCompilingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Query/Visitors/MongoShapedQueryCompilingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/QueryableEncryptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/QueryableEncryptionType.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Serializers/BsonSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Serializers/BsonSerializerFactory.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Serializers/EntitySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Serializers/EntitySerializer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Serializers/MongoEFDiscriminator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Serializers/MongoEFDiscriminator.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Serializers/ValueConverterSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Serializers/ValueConverterSerializer.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/BsonBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/BsonBinding.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/BsonTypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/BsonTypeHelper.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/IMongoClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/IMongoClientWrapper.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/IMongoDatabaseCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/IMongoDatabaseCreator.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/IMongoTransactionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/IMongoTransactionManager.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoClientWrapper.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoDatabaseCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoDatabaseCreator.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoDatabaseWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoDatabaseWrapper.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoTransaction.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoTransactionEnlistmentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoTransactionEnlistmentManager.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoTransactionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoTransactionManager.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoTypeMapping.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoTypeMappingSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoTypeMappingSource.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoUpdate.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/MongoUpdateBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/MongoUpdateBatch.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/RowVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/RowVersion.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/Decimal128DecimalConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/Decimal128DecimalConverter.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/Decimal128ToDecimalConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/Decimal128ToDecimalConverter.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/DecimalToDecimal128Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/DecimalToDecimal128Converter.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/MongoValueConverterSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/MongoValueConverterSelector.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/ObjectIdToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/ObjectIdToStringConverter.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/StringObjectIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/StringObjectIdConverter.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/StringToObjectIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/Storage/ValueConversion/StringToObjectIdConverter.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/TypeExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/TypeExtensionMethods.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ValueGeneration/MongoValueGeneratorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ValueGeneration/MongoValueGeneratorSelector.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ValueGeneration/ObjectIdValueGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ValueGeneration/ObjectIdValueGenerator.cs -------------------------------------------------------------------------------- /src/MongoDB.EntityFrameworkCore/ValueGeneration/StringObjectIdValueGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/src/MongoDB.EntityFrameworkCore/ValueGeneration/StringObjectIdValueGenerator.cs -------------------------------------------------------------------------------- /syncfork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/syncfork.png -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Compatibility/StoredDataStillReadableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Compatibility/StoredDataStillReadableTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/ConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/ConnectionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/CompiledModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/CompiledModelTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF8/EveryTypeEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF8/EveryTypeEntityType.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF8/OwnedEntityEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF8/OwnedEntityEntityType.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF8/SimpleContextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF8/SimpleContextModel.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF8/SimpleContextModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF8/SimpleContextModelBuilder.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/EveryTypeEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/EveryTypeEntityType.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/OwnedEntityEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/OwnedEntityEntityType.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/SimpleContextAssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/SimpleContextAssemblyAttributes.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/SimpleContextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/SimpleContextModel.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/SimpleContextModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Design/Generated/EF9/SimpleContextModelBuilder.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Encryption/EncryptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Encryption/EncryptionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Encryption/EncryptionTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Encryption/EncryptionTestsBase.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Encryption/QueryableEncryptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Encryption/QueryableEncryptionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Entities/Guides/GuidesDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Entities/Guides/GuidesDbContext.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Entities/Guides/Planet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Entities/Guides/Planet.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Exerciser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Exerciser.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/IgnoreCacheKeyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/IgnoreCacheKeyFactory.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/LoggingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/LoggingTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/BsonRepresentationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/BsonRepresentationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/ClrTypeMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/ClrTypeMappingTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/DiscriminatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/DiscriminatorTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/ElementNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/ElementNameTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/NavigationProxyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/NavigationProxyTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/ShadowPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/ShadowPropertyTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/ValueConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Mapping/ValueConverterTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/BsonAttributes/BsonElementAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/BsonAttributes/BsonElementAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/BsonAttributes/BsonIgnoreAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/BsonAttributes/BsonIgnoreAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/CamelCaseElementNameConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/CamelCaseElementNameConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/ColumnAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/ColumnAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/PrimaryKeyDiscoveryConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Metadata/Conventions/PrimaryKeyDiscoveryConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/MongoDB.EntityFrameworkCore.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/MongoDB.EntityFrameworkCore.FunctionalTests.csproj -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/CollectionsResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/CollectionsResponseTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/CompositeKeyQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/CompositeKeyQueryTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/FindTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/FindTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/FirstSingleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/FirstSingleTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/GlobalQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/GlobalQueryTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/InvalidQueryTranslationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/InvalidQueryTranslationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/MqlMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/MqlMethodTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/OwnedEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/OwnedEntityTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/PrimitiveCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/PrimitiveCollectionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/ProjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/ProjectionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/SkipTakeOrderingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/SkipTakeOrderingTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/TopScalarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/TopScalarTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/TopSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/TopSetTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/UnsupportedQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/UnsupportedQueryTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/WhereDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/WhereDictionaryTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/WhereTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Query/WhereTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/BaseSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/BaseSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/BooleanSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/BooleanSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/ByteArraySerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/ByteArraySerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/CollectionSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/CollectionSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/DateAndTimeSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/DateAndTimeSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/DecimalSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/DecimalSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/DictionarySerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/DictionarySerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/FloatingSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/FloatingSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/GuidSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/GuidSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/IntegerSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/IntegerSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/MongoTypeSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/MongoTypeSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/StringSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/StringSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/UnsignedIntegerSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Serialization/UnsignedIntegerSerializationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Storage/IndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Storage/IndexTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Storage/MongoDatabaseCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Storage/MongoDatabaseCreatorTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Storage/TransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Storage/TransactionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/AddEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/AddEntityTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/CompositeKeyCrudTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/CompositeKeyCrudTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/ConcurrencyCheckTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/ConcurrencyCheckTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/ContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/ContextTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/DbContextPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/DbContextPoolTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/DeleteEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/DeleteEntityTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/OwnedNavigationPropertyCrudTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/OwnedNavigationPropertyCrudTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/RowVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/RowVersionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/SaveChangesTransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/SaveChangesTransactionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/SimpleKeyCrudTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/SimpleKeyCrudTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/UpdateEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Update/UpdateEntityTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Usings.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/AtlasFact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/AtlasFact.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/AtlasTemporaryDatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/AtlasTemporaryDatabaseFixture.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/AtlasTheory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/AtlasTheory.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/EnumerableOnlyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/EnumerableOnlyWrapper.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/ExtensionMethods.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/ExternalDatabaseTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/ExternalDatabaseTestServer.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/IgnoreCacheKeyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/IgnoreCacheKeyFactory.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/MongoCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/MongoCondition.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/MongoDbAtlasBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/MongoDbAtlasBuilder.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/MongoDbAtlasContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/MongoDbAtlasContainer.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/NamedContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/NamedContainer.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/ReadOnlySampleGuidesFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/ReadOnlySampleGuidesFixture.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/SampleGuides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/SampleGuides.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/SampleGuidesFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/SampleGuidesFixture.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/SingleEntityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/SingleEntityDbContext.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/SpyLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/SpyLogging.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TemporaryDatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TemporaryDatabaseFixture.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TemporaryDatabaseFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TemporaryDatabaseFixtureBase.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TestContainersTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TestContainersTestServer.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TestDatabaseNamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TestDatabaseNamer.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/Utilities/TestServer.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.FunctionalTests/ValueGeneration/ValueGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.FunctionalTests/ValueGeneration/ValueGenerationTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Extensions/MongoDbContextOptionsExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Extensions/MongoDbContextOptionsExtensionsTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Mapping/BuiltInDataTypesMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Mapping/BuiltInDataTypesMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Metadata/Conventions/MongoValueGenerationConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Metadata/Conventions/MongoValueGenerationConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Metadata/MongoBuilderExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Metadata/MongoBuilderExtensionTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/MongoApiConsistencyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/MongoApiConsistencyTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/MongoDB.EntityFrameworkCore.SpecificationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/MongoDB.EntityFrameworkCore.SpecificationTests.csproj -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/MongoTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/MongoTestHelpers.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/AdHocJsonQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/AdHocJsonQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindAggregateOperatorsQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindAggregateOperatorsQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindAsNoTrackingQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindAsNoTrackingQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindAsTrackingQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindAsTrackingQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindChangeTrackingQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindChangeTrackingQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindCompiledQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindCompiledQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindDbFunctionsQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindDbFunctionsQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindEFPropertyIncludeQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindEFPropertyIncludeQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindFunctionsQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindFunctionsQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindGroupByQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindGroupByQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindIncludeNoTrackingQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindIncludeNoTrackingQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindIncludeQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindIncludeQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindJoinQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindJoinQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindKeylessEntitiesQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindKeylessEntitiesQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindMiscellaneousQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindMiscellaneousQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindNavigationsQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindNavigationsQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindQueryFiltersQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindQueryFiltersQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindQueryMongoFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindQueryMongoFixture.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindQueryTaggingQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindQueryTaggingQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindSelectQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindSelectQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindSetOperationsQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindSetOperationsQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindStringIncludeQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindStringIncludeQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindWhereQueryMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/NorthwindWhereQueryMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/VectorSearchExactMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/VectorSearchExactMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/VectorSearchMongoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/VectorSearchMongoTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/VectorSearchMongoTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Query/VectorSearchMongoTestBase.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Usings.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Utilities/MongoConditionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Utilities/MongoConditionAttribute.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Utilities/MongoTestStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Utilities/MongoTestStore.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Utilities/MongoTestStoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Utilities/MongoTestStoreFactory.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/Utilities/TestMqlLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/Utilities/TestMqlLoggerFactory.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.SpecificationTests/ValueGeneration/MongoValueGeneratorSelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.SpecificationTests/ValueGeneration/MongoValueGeneratorSelectorTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Extensions/MongoPropertiesConfigurationBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Extensions/MongoPropertiesConfigurationBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Extensions/MongoPropertyBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Extensions/MongoPropertyBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Infrastructure/MongoModelValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Infrastructure/MongoModelValidatorTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Infrastructure/MongoOptionsExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Infrastructure/MongoOptionsExtensionTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Attributes/CollectionAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Attributes/CollectionAttributeTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonDateTimeOptionsAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonDateTimeOptionsAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonElementAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonElementAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonIdAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonIdAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonIgnoreAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonIgnoreAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonRepresentationAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonRepresentationAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonRequiredAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonRequiredAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonUnsupportedAttributesConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/BsonAttributes/BsonUnsupportedAttributesConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/CollectionAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/CollectionAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/CollectionNameFromDbSetConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/CollectionNameFromDbSetConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/ColumnAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/ColumnAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/DateTimeKindConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/DateTimeKindConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/MongoConventionSetBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/MongoConventionSetBuilderTest.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/PrimaryKeyDiscoveryConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/PrimaryKeyDiscoveryConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/TableAttributeConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Metadata/Conventions/TableAttributeConventionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/MongoDB.EntityFrameworkCore.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/MongoDB.EntityFrameworkCore.UnitTests.csproj -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/NamingHelperMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/NamingHelperMethodTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Query/Expressions/MongoCollectionExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Query/Expressions/MongoCollectionExpressionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Query/Expressions/MongoQueryExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Query/Expressions/MongoQueryExpressionTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Storage/BsonBindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Storage/BsonBindingTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/TestUtilities/SingleEntityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/TestUtilities/SingleEntityDbContext.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/TestUtilities/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/TestUtilities/Utilities.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/Usings.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/ValueGeneration/ObjectIdValueGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/ValueGeneration/ObjectIdValueGeneratorTests.cs -------------------------------------------------------------------------------- /tests/MongoDB.EntityFrameworkCore.UnitTests/ValueGeneration/StringObjectIdValueGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-efcore-provider/HEAD/tests/MongoDB.EntityFrameworkCore.UnitTests/ValueGeneration/StringObjectIdValueGeneratorTests.cs --------------------------------------------------------------------------------