├── .editorconfig ├── .gitattributes ├── .gitignore ├── EFCore.SqlServer.VectorSearch.Test ├── EFCore.SqlServer.VectorSearch.Test.csproj ├── TestUtilities │ ├── SqlServerDatabaseCleaner.cs │ ├── SqlServerDatabaseFacadeExtensions.cs │ ├── SqlServerTestStore.cs │ ├── SqlServerTestStoreFactory.cs │ ├── TestEnvironment.cs │ └── TestSqlServerRetryingExecutionStrategy.cs └── VectorSearchQueryTest.cs ├── EFCore.SqlServer.VectorSearch.sln ├── EFCore.SqlServer.VectorSearch ├── EFCore.SqlServer.VectorSearch.csproj ├── Extensions │ ├── SqlServerVectorSearchDbContextOptionsBuilderExtensions.cs │ ├── SqlServerVectorSearchDbFunctionsExtensions.cs │ ├── SqlServerVectorSearchPropertyBuilderExtensions.cs │ └── SqlServerVectorSearchServiceCollectionExtensions.cs ├── Infrastructure │ └── SqlServerVectorSearchOptionsExtension.cs ├── Query │ ├── SqlServerVectorSearchEvaluatableExpressionFilterPlugin.cs │ ├── SqlServerVectorSearchMethodCallTranslator.cs │ └── SqlServerVectorSearchMethodCallTranslatorPlugin.cs └── Storage │ ├── SqlServerVectorSearchTypeMappingSourcePlugin.cs │ └── SqlServerVectorTypeMapping.cs ├── LICENSE └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/.gitignore -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.Test/EFCore.SqlServer.VectorSearch.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.Test/EFCore.SqlServer.VectorSearch.Test.csproj -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.Test/TestUtilities/SqlServerDatabaseCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.Test/TestUtilities/SqlServerDatabaseCleaner.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.Test/TestUtilities/SqlServerDatabaseFacadeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.Test/TestUtilities/SqlServerDatabaseFacadeExtensions.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.Test/TestUtilities/SqlServerTestStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.Test/TestUtilities/SqlServerTestStore.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.Test/TestUtilities/SqlServerTestStoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.Test/TestUtilities/SqlServerTestStoreFactory.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.Test/TestUtilities/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.Test/TestUtilities/TestEnvironment.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.Test/TestUtilities/TestSqlServerRetryingExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.Test/TestUtilities/TestSqlServerRetryingExecutionStrategy.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.Test/VectorSearchQueryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.Test/VectorSearchQueryTest.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch.sln -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/EFCore.SqlServer.VectorSearch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/EFCore.SqlServer.VectorSearch.csproj -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Extensions/SqlServerVectorSearchDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Extensions/SqlServerVectorSearchDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Extensions/SqlServerVectorSearchDbFunctionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Extensions/SqlServerVectorSearchDbFunctionsExtensions.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Extensions/SqlServerVectorSearchPropertyBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Extensions/SqlServerVectorSearchPropertyBuilderExtensions.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Extensions/SqlServerVectorSearchServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Extensions/SqlServerVectorSearchServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Infrastructure/SqlServerVectorSearchOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Infrastructure/SqlServerVectorSearchOptionsExtension.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Query/SqlServerVectorSearchEvaluatableExpressionFilterPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Query/SqlServerVectorSearchEvaluatableExpressionFilterPlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Query/SqlServerVectorSearchMethodCallTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Query/SqlServerVectorSearchMethodCallTranslator.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Query/SqlServerVectorSearchMethodCallTranslatorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Query/SqlServerVectorSearchMethodCallTranslatorPlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Storage/SqlServerVectorSearchTypeMappingSourcePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Storage/SqlServerVectorSearchTypeMappingSourcePlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.VectorSearch/Storage/SqlServerVectorTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/EFCore.SqlServer.VectorSearch/Storage/SqlServerVectorTypeMapping.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efcore/EFCore.SqlServer.VectorSearch/HEAD/README.md --------------------------------------------------------------------------------