├── .devcontainer ├── devcontainer.json ├── docker-compose.yml ├── pgadmin4 │ ├── config_local.py │ └── servers.json └── postgres │ ├── Dockerfile │ └── init-db.sh ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .husky ├── .gitattributes └── pre-commit ├── .vscode ├── spellright.dict └── tasks.json ├── Directory.Build.props ├── Directory.Packages.props ├── LICENSE ├── NuGet.Config ├── README.md ├── Zomp.EFCore.Extensions.slnx ├── package.json ├── src ├── Directory.Build.props ├── Zomp.EFCore.BinaryFunctions.Npgsql │ ├── Extensions │ │ └── NpgsqlDbContextOptionsBuilderExtensions.cs │ ├── Infrastructure │ │ └── Internal │ │ │ └── NpgsqlDbContextOptionsExtension.cs │ ├── Query │ │ └── Internal │ │ │ ├── BinaryNpgsqlQuerySqlGenerator.cs │ │ │ ├── BinaryNpgsqlQuerySqlGeneratorFactory.cs │ │ │ ├── NpgsqlBinaryTranslator.cs │ │ │ └── NpgsqlBinaryTranslatorPluginFactory.cs │ ├── Storage │ │ └── Internal │ │ │ └── BinaryNpgsqlTypeMappingSource.cs │ └── Zomp.EFCore.BinaryFunctions.Npgsql.csproj ├── Zomp.EFCore.BinaryFunctions.SqlServer │ ├── Extensions │ │ └── SqlServerDbContextOptionsBuilderExtensions.cs │ ├── Infrastructure │ │ └── Internal │ │ │ ├── SqlServerBinaryTranslator.cs │ │ │ ├── SqlServerBinaryTranslatorPluginFactory.cs │ │ │ └── SqlServerDbContextOptionsExtension.cs │ ├── Storage │ │ └── Internal │ │ │ └── BinarySqlServerTypeMappingSource.cs │ └── Zomp.EFCore.BinaryFunctions.SqlServer.csproj ├── Zomp.EFCore.BinaryFunctions.Sqlite │ ├── Extensions │ │ └── SqliteDbContextOptionsBuilderExtensions.cs │ ├── Infrastructure │ │ └── Internal │ │ │ └── SqliteDbContextOptionsExtension.cs │ ├── Query │ │ └── Internal │ │ │ ├── SqliteBinaryTranslator.cs │ │ │ └── SqliteBinaryTranslatorPluginFactory.cs │ ├── Storage │ │ └── Internal │ │ │ └── BinarySqliteTypeMappingSource.cs │ └── Zomp.EFCore.BinaryFunctions.Sqlite.csproj ├── Zomp.EFCore.BinaryFunctions │ ├── Extensions │ │ ├── BinaryServiceCollectionExtensions.cs │ │ └── DbFunctionsExtensions.Binary.cs │ ├── Infrastructure │ │ └── Internal │ │ │ └── ExtensionInfo.cs │ ├── Query │ │ └── Internal │ │ │ ├── BinaryFunctionsTranslatorPlugin.cs │ │ │ ├── BinaryTranslator.cs │ │ │ ├── BinaryTranslatorPluginFactory.cs │ │ │ ├── IBinaryFunctionsTranslatorPluginFactory.cs │ │ │ └── IBinaryTranslatorPluginFactory.cs │ ├── Storage │ │ └── Internal │ │ │ └── FixedByteArray.cs │ └── Zomp.EFCore.BinaryFunctions.csproj ├── Zomp.EFCore.WindowFunctions.Npgsql │ ├── Extensions │ │ └── NpgsqlDbContextOptionsBuilderExtensions.cs │ ├── FodyWeavers.xml │ ├── Infrastructure │ │ └── Internal │ │ │ └── NpgsqlDbContextOptionsExtension.cs │ ├── Query │ │ └── Internal │ │ │ ├── WindowFunctionsNpgsqlEvaluatableExpressionFilter.cs │ │ │ ├── WindowFunctionsNpgsqlParameterBasedSqlProcessor.cs │ │ │ ├── WindowFunctionsNpgsqlParameterBasedSqlProcessorFactory.cs │ │ │ ├── WindowFunctionsNpgsqlQuerySqlGenerator.cs │ │ │ ├── WindowFunctionsNpgsqlQuerySqlGeneratorFactory.cs │ │ │ ├── WindowFunctionsNpgsqlQueryableMethodTranslatingExpressionVisitor.cs │ │ │ ├── WindowFunctionsNpgsqlQueryableMethodTranslatingExpressionVisitorFactory.cs │ │ │ └── WindowFunctionsNpgsqlSqlNullabilityProcessor.cs │ └── Zomp.EFCore.WindowFunctions.Npgsql.csproj ├── Zomp.EFCore.WindowFunctions.SqlServer │ ├── Extensions │ │ ├── SqlServerDbContextOptionsBuilderExtensions.cs │ │ └── WindowFunctionsSqlServerEvaluatableExpressionFilter.cs │ ├── Infrastructure │ │ └── Internal │ │ │ └── SqlServerDbContextOptionsExtension.cs │ ├── Query │ │ └── Internal │ │ │ ├── WindowFunctionsSqlServerEvaluatableExpressionFilter.cs │ │ │ ├── WindowFunctionsSqlServerParameterBasedSqlProcessor.cs │ │ │ ├── WindowFunctionsSqlServerParameterBasedSqlProcessorFactory.cs │ │ │ ├── WindowFunctionsSqlServerQuerySqlGenerator.cs │ │ │ ├── WindowFunctionsSqlServerQuerySqlGeneratorFactory.cs │ │ │ ├── WindowFunctionsSqlServerQueryableMethodTranslatingExpressionVisitor.cs │ │ │ ├── WindowFunctionsSqlServerQueryableMethodTranslatingExpressionVisitorFactory.cs │ │ │ └── WindowFunctionsSqlServerSqlNullabilityProcessor.cs │ └── Zomp.EFCore.WindowFunctions.SqlServer.csproj ├── Zomp.EFCore.WindowFunctions.Sqlite │ ├── Extensions │ │ └── SqliteDbContextOptionsBuilderExtensions.cs │ ├── Infrastructure │ │ └── Internal │ │ │ └── SqliteDbContextOptionsExtension.cs │ ├── Query │ │ └── Internal │ │ │ ├── SqliteWindowFunctionsEvaluatableExpressionFilter.cs │ │ │ ├── SqliteWindowFunctionsTranslator.cs │ │ │ ├── SqliteWindowFunctionsTranslatorPluginFactory.cs │ │ │ ├── WindowFunctionsSqliteParameterBasedSqlProcessor.cs │ │ │ ├── WindowFunctionsSqliteParameterBasedSqlProcessorFactory.cs │ │ │ ├── WindowFunctionsSqliteQueryableMethodTranslatingExpressionVisitor.cs │ │ │ ├── WindowFunctionsSqliteQueryableMethodTranslatingExpressionVisitorFactory.cs │ │ │ └── WindowFunctionsSqliteSqlNullabilityProcessor.cs │ └── Zomp.EFCore.WindowFunctions.Sqlite.csproj ├── Zomp.EFCore.WindowFunctions │ ├── Clauses │ │ ├── IRangeCanBeClosed.cs │ │ ├── OrderByClause.cs │ │ ├── OrderByClauseWithRowsOrRange.cs │ │ ├── OrderByClauseWithRowsOrRangeNeedToClose.cs │ │ ├── OverClause.cs │ │ ├── PartitionByClause.cs │ │ ├── RangeClause.cs │ │ ├── RowsClause.cs │ │ └── RowsOrRangeClause.cs │ ├── Extensions │ │ ├── DbFunctionsExtensions.cs │ │ ├── SubQueryProcessor.cs │ │ └── WindowsServiceCollectionExtensions.cs │ ├── FodyWeavers.xml │ ├── Infrastructure │ │ └── Internal │ │ │ └── ExtensionInfo.cs │ ├── NullHandling.cs │ ├── Query │ │ ├── Internal │ │ │ ├── BoundedWindowFrame.cs │ │ │ ├── CompareNameAndDeclaringType.cs │ │ │ ├── CurrentRowWindowFrame.cs │ │ │ ├── ExpressionVisitorExtensions.cs │ │ │ ├── IWindowFunctionsTranslatorPluginFactory.cs │ │ │ ├── JoinDetector.cs │ │ │ ├── UnboundedWindowFrame.cs │ │ │ ├── WindowFrame.cs │ │ │ ├── WindowFunctionDetectorInternal.cs │ │ │ ├── WindowFunctionInsideWhereDetector.cs │ │ │ ├── WindowFunctionsEvaluatableExpressionFilter.cs │ │ │ ├── WindowFunctionsRelationalQueryTranslationPreprocessor.cs │ │ │ ├── WindowFunctionsRelationalQueryTranslationPreprocessorFactory.cs │ │ │ ├── WindowFunctionsSqlNullabilityProcessorHelper.cs │ │ │ ├── WindowFunctionsTranslator.cs │ │ │ ├── WindowFunctionsTranslatorPlugin.cs │ │ │ ├── WindowFunctionsTranslatorPluginFactory.cs │ │ │ ├── WindowQuerySqlGenerator.cs │ │ │ └── WindowQuerySqlGeneratorFactory.cs │ │ └── SqlExpressions │ │ │ ├── ChainedSqlExpression.cs │ │ │ ├── OrderingSqlExpression.cs │ │ │ ├── OverExpression.cs │ │ │ ├── PartitionByExpression.cs │ │ │ ├── RowOrRangeExpression.cs │ │ │ └── WindowFunctionExpression.cs │ ├── Templates │ │ ├── DbFunctionsExtensions.Function.tt │ │ └── Includes.ttinclude │ └── Zomp.EFCore.WindowFunctions.csproj └── images │ └── icon.png ├── stylecop.json ├── switcher.json ├── tests ├── Directory.Build.props ├── Zomp.EFCore.BinaryFunctions.Npgsql.Tests │ ├── BinaryTests.cs │ ├── NpgsqlCollection.cs │ ├── NpgsqlFixture.cs │ ├── NpgsqlTestDbContext.cs │ └── Zomp.EFCore.BinaryFunctions.Npgsql.Tests.csproj ├── Zomp.EFCore.BinaryFunctions.SqlServer.Tests │ ├── BinaryTests.cs │ ├── SqlServerCollection.cs │ ├── SqlServerFixture.cs │ ├── SqlServerTestDbContext.cs │ └── Zomp.EFCore.BinaryFunctions.SqlServer.Tests.csproj ├── Zomp.EFCore.BinaryFunctions.Sqlite.Tests │ ├── BinaryTests.cs │ ├── SqliteCollection.cs │ ├── SqliteFixture.cs │ ├── SqliteTestDbContext.cs │ └── Zomp.EFCore.BinaryFunctions.Sqlite.Tests.csproj ├── Zomp.EFCore.BinaryFunctions.Testing │ ├── BinaryTests.cs │ └── Zomp.EFCore.BinaryFunctions.Testing.csproj ├── Zomp.EFCore.Combined.Npgsql.Tests │ ├── CombinedNpgsqlQuerySqlGenerator.cs │ ├── CombinedNpgsqlQuerySqlGeneratorFactory.cs │ ├── CombinedTests.cs │ ├── NpgsqlCollection.cs │ ├── NpgsqlFixture.cs │ ├── NpgsqlTestDbContext.cs │ ├── TestBase.cs │ └── Zomp.EFCore.Combined.Npgsql.Tests.csproj ├── Zomp.EFCore.Combined.SqlServer.Tests │ ├── CombinedTests.cs │ ├── SqlServerCollection.cs │ ├── SqlServerFixture.cs │ ├── SqlServerTestDbContext.cs │ ├── TestBase.cs │ └── Zomp.EFCore.Combined.SqlServer.Tests.csproj ├── Zomp.EFCore.Combined.Sqlite.Tests │ ├── CombinedTests.cs │ ├── SqliteCollection.cs │ ├── SqliteFixture.cs │ ├── SqliteTestDbContext.cs │ ├── TestBase.cs │ └── Zomp.EFCore.Combined.Sqlite.Tests.csproj ├── Zomp.EFCore.Combined.Testing │ ├── CombinedTests.cs │ └── Zomp.EFCore.Combined.Testing.csproj ├── Zomp.EFCore.Testing │ ├── LinqExtensions.cs │ ├── TestDbContext.cs │ ├── TestFixture.cs │ ├── TestRow.cs │ ├── TestRowEqualityComparer.cs │ ├── TestSettings.cs │ └── Zomp.EFCore.Testing.csproj ├── Zomp.EFCore.WindowFunctions.Npgsql.Tests │ ├── NpgsqlCollection.cs │ ├── NpgsqlFixture.cs │ ├── NpgsqlSpecificTests.cs │ ├── NpgsqlTestDbContext.cs │ ├── Partials.cs │ ├── TestBase.cs │ └── Zomp.EFCore.WindowFunctions.Npgsql.Tests.csproj ├── Zomp.EFCore.WindowFunctions.SqlServer.Tests │ ├── Partials.cs │ ├── SqlServerCollection.cs │ ├── SqlServerFixture.cs │ ├── SqlServerTestDbContext.cs │ ├── TestBase.cs │ └── Zomp.EFCore.WindowFunctions.SqlServer.Tests.csproj ├── Zomp.EFCore.WindowFunctions.Sqlite.Tests │ ├── Partials.cs │ ├── SqliteCollection.cs │ ├── SqliteFixture.cs │ ├── SqliteTestDbContext.cs │ ├── TestBase.cs │ └── Zomp.EFCore.WindowFunctions.Sqlite.Tests.csproj ├── Zomp.EFCore.WindowFunctions.Testing │ ├── AnalyticTests.cs │ ├── ArrayExtensions.cs │ ├── AvgTests.cs │ ├── CountTests.cs │ ├── DecimalRoundingEqualityComparer.cs │ ├── MaxTests.cs │ ├── NullSensitiveComparer.cs │ ├── NullTests.cs │ ├── RankTests.cs │ ├── SubQueryTests.cs │ ├── SumTests.cs │ ├── Zomp.EFCore.WindowFunctions.Testing.projitems │ └── Zomp.EFCore.WindowFunctions.Testing.shproj └── coverlet.runsettings ├── version.json └── yarn.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.devcontainer/pgadmin4/config_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.devcontainer/pgadmin4/config_local.py -------------------------------------------------------------------------------- /.devcontainer/pgadmin4/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.devcontainer/pgadmin4/servers.json -------------------------------------------------------------------------------- /.devcontainer/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.devcontainer/postgres/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/postgres/init-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.devcontainer/postgres/init-db.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.vscode/spellright.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.vscode/spellright.dict -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/README.md -------------------------------------------------------------------------------- /Zomp.EFCore.Extensions.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/Zomp.EFCore.Extensions.slnx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/package.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Npgsql/Extensions/NpgsqlDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Npgsql/Extensions/NpgsqlDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Npgsql/Infrastructure/Internal/NpgsqlDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Npgsql/Infrastructure/Internal/NpgsqlDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Npgsql/Query/Internal/BinaryNpgsqlQuerySqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Npgsql/Query/Internal/BinaryNpgsqlQuerySqlGenerator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Npgsql/Query/Internal/BinaryNpgsqlQuerySqlGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Npgsql/Query/Internal/BinaryNpgsqlQuerySqlGeneratorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Npgsql/Query/Internal/NpgsqlBinaryTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Npgsql/Query/Internal/NpgsqlBinaryTranslator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Npgsql/Query/Internal/NpgsqlBinaryTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Npgsql/Query/Internal/NpgsqlBinaryTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Npgsql/Storage/Internal/BinaryNpgsqlTypeMappingSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Npgsql/Storage/Internal/BinaryNpgsqlTypeMappingSource.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Npgsql/Zomp.EFCore.BinaryFunctions.Npgsql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Npgsql/Zomp.EFCore.BinaryFunctions.Npgsql.csproj -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.SqlServer/Extensions/SqlServerDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.SqlServer/Extensions/SqlServerDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.SqlServer/Infrastructure/Internal/SqlServerBinaryTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.SqlServer/Infrastructure/Internal/SqlServerBinaryTranslator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.SqlServer/Infrastructure/Internal/SqlServerBinaryTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.SqlServer/Infrastructure/Internal/SqlServerBinaryTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.SqlServer/Infrastructure/Internal/SqlServerDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.SqlServer/Infrastructure/Internal/SqlServerDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.SqlServer/Storage/Internal/BinarySqlServerTypeMappingSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.SqlServer/Storage/Internal/BinarySqlServerTypeMappingSource.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.SqlServer/Zomp.EFCore.BinaryFunctions.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.SqlServer/Zomp.EFCore.BinaryFunctions.SqlServer.csproj -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Sqlite/Extensions/SqliteDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Sqlite/Extensions/SqliteDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Sqlite/Infrastructure/Internal/SqliteDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Sqlite/Infrastructure/Internal/SqliteDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Sqlite/Query/Internal/SqliteBinaryTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Sqlite/Query/Internal/SqliteBinaryTranslator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Sqlite/Query/Internal/SqliteBinaryTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Sqlite/Query/Internal/SqliteBinaryTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Sqlite/Storage/Internal/BinarySqliteTypeMappingSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Sqlite/Storage/Internal/BinarySqliteTypeMappingSource.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions.Sqlite/Zomp.EFCore.BinaryFunctions.Sqlite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions.Sqlite/Zomp.EFCore.BinaryFunctions.Sqlite.csproj -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Extensions/BinaryServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Extensions/BinaryServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Extensions/DbFunctionsExtensions.Binary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Extensions/DbFunctionsExtensions.Binary.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Infrastructure/Internal/ExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Infrastructure/Internal/ExtensionInfo.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Query/Internal/BinaryFunctionsTranslatorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Query/Internal/BinaryFunctionsTranslatorPlugin.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Query/Internal/BinaryTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Query/Internal/BinaryTranslator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Query/Internal/BinaryTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Query/Internal/BinaryTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Query/Internal/IBinaryFunctionsTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Query/Internal/IBinaryFunctionsTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Query/Internal/IBinaryTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Query/Internal/IBinaryTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Storage/Internal/FixedByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Storage/Internal/FixedByteArray.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.BinaryFunctions/Zomp.EFCore.BinaryFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.BinaryFunctions/Zomp.EFCore.BinaryFunctions.csproj -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Extensions/NpgsqlDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Extensions/NpgsqlDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Infrastructure/Internal/NpgsqlDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Infrastructure/Internal/NpgsqlDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlEvaluatableExpressionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlEvaluatableExpressionFilter.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlParameterBasedSqlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlParameterBasedSqlProcessor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlParameterBasedSqlProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlParameterBasedSqlProcessorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlQuerySqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlQuerySqlGenerator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlQuerySqlGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlQuerySqlGeneratorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlQueryableMethodTranslatingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlQueryableMethodTranslatingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlQueryableMethodTranslatingExpressionVisitorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlQueryableMethodTranslatingExpressionVisitorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlSqlNullabilityProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Query/Internal/WindowFunctionsNpgsqlSqlNullabilityProcessor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Npgsql/Zomp.EFCore.WindowFunctions.Npgsql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Npgsql/Zomp.EFCore.WindowFunctions.Npgsql.csproj -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Extensions/SqlServerDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Extensions/SqlServerDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Extensions/WindowFunctionsSqlServerEvaluatableExpressionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Extensions/WindowFunctionsSqlServerEvaluatableExpressionFilter.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Infrastructure/Internal/SqlServerDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Infrastructure/Internal/SqlServerDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerEvaluatableExpressionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerEvaluatableExpressionFilter.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerParameterBasedSqlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerParameterBasedSqlProcessor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerParameterBasedSqlProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerParameterBasedSqlProcessorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerQuerySqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerQuerySqlGenerator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerQuerySqlGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerQuerySqlGeneratorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerQueryableMethodTranslatingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerQueryableMethodTranslatingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerQueryableMethodTranslatingExpressionVisitorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerQueryableMethodTranslatingExpressionVisitorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerSqlNullabilityProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Query/Internal/WindowFunctionsSqlServerSqlNullabilityProcessor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.SqlServer/Zomp.EFCore.WindowFunctions.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.SqlServer/Zomp.EFCore.WindowFunctions.SqlServer.csproj -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Extensions/SqliteDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Extensions/SqliteDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Infrastructure/Internal/SqliteDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Infrastructure/Internal/SqliteDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/SqliteWindowFunctionsEvaluatableExpressionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/SqliteWindowFunctionsEvaluatableExpressionFilter.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/SqliteWindowFunctionsTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/SqliteWindowFunctionsTranslator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/SqliteWindowFunctionsTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/SqliteWindowFunctionsTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteParameterBasedSqlProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteParameterBasedSqlProcessor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteParameterBasedSqlProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteParameterBasedSqlProcessorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteQueryableMethodTranslatingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteQueryableMethodTranslatingExpressionVisitor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteQueryableMethodTranslatingExpressionVisitorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteQueryableMethodTranslatingExpressionVisitorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteSqlNullabilityProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Query/Internal/WindowFunctionsSqliteSqlNullabilityProcessor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions.Sqlite/Zomp.EFCore.WindowFunctions.Sqlite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions.Sqlite/Zomp.EFCore.WindowFunctions.Sqlite.csproj -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/IRangeCanBeClosed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/IRangeCanBeClosed.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/OrderByClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/OrderByClause.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/OrderByClauseWithRowsOrRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/OrderByClauseWithRowsOrRange.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/OrderByClauseWithRowsOrRangeNeedToClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/OrderByClauseWithRowsOrRangeNeedToClose.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/OverClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/OverClause.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/PartitionByClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/PartitionByClause.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/RangeClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/RangeClause.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/RowsClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/RowsClause.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Clauses/RowsOrRangeClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Clauses/RowsOrRangeClause.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Extensions/DbFunctionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Extensions/DbFunctionsExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Extensions/SubQueryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Extensions/SubQueryProcessor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Extensions/WindowsServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Extensions/WindowsServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Infrastructure/Internal/ExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Infrastructure/Internal/ExtensionInfo.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/NullHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/NullHandling.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/BoundedWindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/BoundedWindowFrame.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/CompareNameAndDeclaringType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/CompareNameAndDeclaringType.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/CurrentRowWindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/CurrentRowWindowFrame.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/ExpressionVisitorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/ExpressionVisitorExtensions.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/IWindowFunctionsTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/IWindowFunctionsTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/JoinDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/JoinDetector.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/UnboundedWindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/UnboundedWindowFrame.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFrame.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionDetectorInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionDetectorInternal.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionInsideWhereDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionInsideWhereDetector.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsEvaluatableExpressionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsEvaluatableExpressionFilter.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsRelationalQueryTranslationPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsRelationalQueryTranslationPreprocessor.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsRelationalQueryTranslationPreprocessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsRelationalQueryTranslationPreprocessorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsSqlNullabilityProcessorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsSqlNullabilityProcessorHelper.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsTranslator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsTranslatorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsTranslatorPlugin.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsTranslatorPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowFunctionsTranslatorPluginFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowQuerySqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowQuerySqlGenerator.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowQuerySqlGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/Internal/WindowQuerySqlGeneratorFactory.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/ChainedSqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/ChainedSqlExpression.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/OrderingSqlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/OrderingSqlExpression.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/OverExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/OverExpression.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/PartitionByExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/PartitionByExpression.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/RowOrRangeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/RowOrRangeExpression.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/WindowFunctionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Query/SqlExpressions/WindowFunctionExpression.cs -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Templates/DbFunctionsExtensions.Function.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Templates/DbFunctionsExtensions.Function.tt -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Templates/Includes.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Templates/Includes.ttinclude -------------------------------------------------------------------------------- /src/Zomp.EFCore.WindowFunctions/Zomp.EFCore.WindowFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/Zomp.EFCore.WindowFunctions/Zomp.EFCore.WindowFunctions.csproj -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/stylecop.json -------------------------------------------------------------------------------- /switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/switcher.json -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/BinaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/BinaryTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/NpgsqlCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/NpgsqlCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/NpgsqlFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/NpgsqlFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/NpgsqlTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/NpgsqlTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests/Zomp.EFCore.BinaryFunctions.Npgsql.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/BinaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/BinaryTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/SqlServerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/SqlServerCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/SqlServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/SqlServerFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/SqlServerTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/SqlServerTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests/Zomp.EFCore.BinaryFunctions.SqlServer.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/BinaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/BinaryTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/SqliteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/SqliteCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/SqliteFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/SqliteFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/SqliteTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/SqliteTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests/Zomp.EFCore.BinaryFunctions.Sqlite.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Testing/BinaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Testing/BinaryTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.BinaryFunctions.Testing/Zomp.EFCore.BinaryFunctions.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.BinaryFunctions.Testing/Zomp.EFCore.BinaryFunctions.Testing.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Npgsql.Tests/CombinedNpgsqlQuerySqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Npgsql.Tests/CombinedNpgsqlQuerySqlGenerator.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Npgsql.Tests/CombinedNpgsqlQuerySqlGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Npgsql.Tests/CombinedNpgsqlQuerySqlGeneratorFactory.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Npgsql.Tests/CombinedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Npgsql.Tests/CombinedTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Npgsql.Tests/NpgsqlCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Npgsql.Tests/NpgsqlCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Npgsql.Tests/NpgsqlFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Npgsql.Tests/NpgsqlFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Npgsql.Tests/NpgsqlTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Npgsql.Tests/NpgsqlTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Npgsql.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Npgsql.Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Npgsql.Tests/Zomp.EFCore.Combined.Npgsql.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Npgsql.Tests/Zomp.EFCore.Combined.Npgsql.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.SqlServer.Tests/CombinedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.SqlServer.Tests/CombinedTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.SqlServer.Tests/SqlServerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.SqlServer.Tests/SqlServerCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.SqlServer.Tests/SqlServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.SqlServer.Tests/SqlServerFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.SqlServer.Tests/SqlServerTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.SqlServer.Tests/SqlServerTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.SqlServer.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.SqlServer.Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.SqlServer.Tests/Zomp.EFCore.Combined.SqlServer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.SqlServer.Tests/Zomp.EFCore.Combined.SqlServer.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Sqlite.Tests/CombinedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Sqlite.Tests/CombinedTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Sqlite.Tests/SqliteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Sqlite.Tests/SqliteCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Sqlite.Tests/SqliteFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Sqlite.Tests/SqliteFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Sqlite.Tests/SqliteTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Sqlite.Tests/SqliteTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Sqlite.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Sqlite.Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Sqlite.Tests/Zomp.EFCore.Combined.Sqlite.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Sqlite.Tests/Zomp.EFCore.Combined.Sqlite.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Testing/CombinedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Testing/CombinedTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Combined.Testing/Zomp.EFCore.Combined.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Combined.Testing/Zomp.EFCore.Combined.Testing.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Testing/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Testing/LinqExtensions.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Testing/TestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Testing/TestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Testing/TestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Testing/TestFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Testing/TestRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Testing/TestRow.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Testing/TestRowEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Testing/TestRowEqualityComparer.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Testing/TestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Testing/TestSettings.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.Testing/Zomp.EFCore.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.Testing/Zomp.EFCore.Testing.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/NpgsqlCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/NpgsqlCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/NpgsqlFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/NpgsqlFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/NpgsqlSpecificTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/NpgsqlSpecificTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/NpgsqlTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/NpgsqlTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/Partials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/Partials.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests/Zomp.EFCore.WindowFunctions.Npgsql.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/Partials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/Partials.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/SqlServerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/SqlServerCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/SqlServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/SqlServerFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/SqlServerTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/SqlServerTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests/Zomp.EFCore.WindowFunctions.SqlServer.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/Partials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/Partials.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/SqliteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/SqliteCollection.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/SqliteFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/SqliteFixture.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/SqliteTestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/SqliteTestDbContext.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests/Zomp.EFCore.WindowFunctions.Sqlite.Tests.csproj -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/AnalyticTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/AnalyticTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/ArrayExtensions.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/AvgTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/AvgTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/CountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/CountTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/DecimalRoundingEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/DecimalRoundingEqualityComparer.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/MaxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/MaxTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/NullSensitiveComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/NullSensitiveComparer.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/NullTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/NullTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/RankTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/RankTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/SubQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/SubQueryTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/SumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/SumTests.cs -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/Zomp.EFCore.WindowFunctions.Testing.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/Zomp.EFCore.WindowFunctions.Testing.projitems -------------------------------------------------------------------------------- /tests/Zomp.EFCore.WindowFunctions.Testing/Zomp.EFCore.WindowFunctions.Testing.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/Zomp.EFCore.WindowFunctions.Testing/Zomp.EFCore.WindowFunctions.Testing.shproj -------------------------------------------------------------------------------- /tests/coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/tests/coverlet.runsettings -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/version.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zompinc/efcore-extensions/HEAD/yarn.lock --------------------------------------------------------------------------------