├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.sources.list ├── .travis.yml ├── Directory.Build.props ├── EFCore.FirebirdSQL.sln ├── EFCore.FirebirdSql.FunctionalTests ├── Directory.Build.props ├── EFCore.FirebirdSql.FunctionalTests.csproj ├── Util │ └── ExtensionSql.cs └── xunit.runner.json ├── EFCore.FirebirdSql ├── Design │ └── Internal │ │ ├── FbAnnotationCodeGenerator.cs │ │ └── FbDesignTimeServices.cs ├── Diagnostics │ └── FbEventId.cs ├── EFCore.FirebirdSql.csproj ├── EntityFramework.FirebirdSQL.snk ├── Extensions │ ├── FbDatabaseFacadeExtensions.cs │ ├── FbDbContextOptionsExtensions.cs │ ├── FbMetadataExtensions.cs │ ├── FbModelBuilderExtensions.cs │ ├── FbPropertyBuilderExtensions.cs │ ├── FbQueryableExtensions.cs │ ├── FbServiceCollectionExtensions.cs │ ├── FbSharedType.cs │ ├── FbStringExtension.cs │ └── StringBuilderExtensions.cs ├── Infrastructure │ ├── FbDbContextOptionsBuilder.cs │ └── Internal │ │ ├── FbOptionsExtension.cs │ │ └── IFbOptions.cs ├── Internal │ ├── FbLoggerExtensions.cs │ └── FbOptions.cs ├── Metadata │ ├── Conventions │ │ ├── FbConventionSetBuilder.cs │ │ └── Internal │ │ │ └── FbValueGenerationStrategyConvention.cs │ ├── FbModelAnnotations.cs │ ├── FbPropertyAnnotations.cs │ ├── FbValueGenerationStrategy.cs │ ├── IFbModelAnnotations.cs │ ├── IFbPropertyAnnotations.cs │ └── Internal │ │ ├── FbAnnotationNames.cs │ │ ├── FbInternalMetadataBuilderExtensions.cs │ │ ├── FbModelBuilderAnnotations.cs │ │ └── FbPropertyBuilderAnnotations.cs ├── Migrations │ ├── FbMigrationSqlGeneratorBehavior.cs │ ├── FbMigrationsSqlGenerator.cs │ ├── IFbMigrationSqlGeneratorBehavior.cs │ ├── Internal │ │ ├── FbHistoryRepository.cs │ │ └── FbMigrationsAnnotationProvider.cs │ └── Operations │ │ ├── FbCreateDatabaseOperation.cs │ │ └── FbDropDatabaseOperation.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── FbStrings.Designer.cs │ ├── FbStrings.Designer.tt │ ├── FbStrings.resx │ ├── FirebirdSql.EntityFrameworkCore.Firebird.snk │ ├── InternalsVisibleTo.cs │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Resources.cs │ └── Resources.tt ├── Query │ ├── ExpressionTranslators │ │ └── Internal │ │ │ ├── FbContainsOptimizedTranslator.cs │ │ │ ├── FbConvertTranslator.cs │ │ │ ├── FbDateAddTranslator.cs │ │ │ ├── FbDateTimeMemberTranslator.cs │ │ │ ├── FbEndsWithOptimizedTranslator.cs │ │ │ ├── FbMathTranslator.cs │ │ │ ├── FbNewGuidTranslator.cs │ │ │ ├── FbObjectToStringTranslator.cs │ │ │ ├── FbStartsWithOptimizedTranslator.cs │ │ │ ├── FbStringIsNullOrWhiteSpaceTranslator.cs │ │ │ ├── FbStringLengthTranslator.cs │ │ │ ├── FbStringReplaceTranslator.cs │ │ │ ├── FbStringSubstringTranslator.cs │ │ │ ├── FbStringToLowerTranslator.cs │ │ │ ├── FbStringToUpperTranslator.cs │ │ │ └── FbStringTrimTranslator.cs │ ├── ExpressionVisitors │ │ └── Internal │ │ │ ├── FbSqlTranslatingExpressionVisitor.cs │ │ │ └── FbSqlTranslatingExpressionVisitorFactory.cs │ ├── Expressions │ │ └── Internal │ │ │ ├── FbExtractExpression.cs │ │ │ └── FbStringExpression.cs │ ├── FbCompilationContextFactory.cs │ ├── MethodsTranslators │ │ ├── FbCompositeMemberTranslator.cs │ │ └── FbCompositeMethodCallTranslator.cs │ ├── Operators │ │ ├── WithLockExpressionNode.cs │ │ └── WithLockResultOperator.cs │ └── Sql │ │ └── Internal │ │ ├── FbQuerySqlGenerator.cs │ │ ├── FbQuerySqlGeneratorFactory.cs │ │ └── IFbExpressionVisitor.cs ├── Scaffolding │ ├── Internal │ │ ├── FbDataReaderExtension.cs │ │ ├── FbDatabaseModelFactory.cs │ │ └── FbScaffoldingCodeGenerator.cs │ └── Metadata │ │ ├── FbColumnModelAnnotations.cs │ │ ├── FbDatabaseModelAnnotationNames.cs │ │ ├── FbDatabaseModelExtensions.cs │ │ └── FbIndexModelAnnotations.cs ├── Storage │ └── Internal │ │ ├── FbDatabaseCreator.cs │ │ ├── FbRelationalCommand.cs │ │ ├── FbRelationalConnection.cs │ │ ├── FbRelationalTransaction.cs │ │ ├── FbSqlGeneratorHelper.cs │ │ ├── IFbRelationalConnection.cs │ │ ├── IFbSqlGeneratorHelper.cs │ │ └── Mapping │ │ ├── FbBoolTypeMapping.cs │ │ ├── FbByteArrayTypeMapping.cs │ │ ├── FbDateTimeTypeMapping.cs │ │ ├── FbGuidTypeMapping.cs │ │ ├── FbStringTypeMapping.cs │ │ ├── FbTypeMapping.cs │ │ └── FbTypeMappingSource.cs ├── Update │ └── Internal │ │ ├── FbBatchExecutor.cs │ │ ├── FbModificationCommandBatchFactory.cs │ │ ├── FbUpdateSqlGenerator.cs │ │ └── IFbUpdateSqlGenerator.cs ├── Utilities │ └── TranslatorMethods.cs └── ValueGeneration │ └── Internal │ ├── FbSequentialGuidValueGenerator.cs │ └── FbValueGeneratorSelector.cs ├── EFCore.FirerbirdSql.ScaffoldTest ├── EFCore.FirerbirdSql.ScaffoldTest.csproj ├── Program.cs └── scaffold.ps1 ├── ISSUE_TEMPLATE.md ├── LICENSE ├── NuGet.Config ├── README.md ├── appveyor.yml └── msbuild.binlog /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/.travis.sources.list -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/.travis.yml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /EFCore.FirebirdSQL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSQL.sln -------------------------------------------------------------------------------- /EFCore.FirebirdSql.FunctionalTests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql.FunctionalTests/Directory.Build.props -------------------------------------------------------------------------------- /EFCore.FirebirdSql.FunctionalTests/EFCore.FirebirdSql.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql.FunctionalTests/EFCore.FirebirdSql.FunctionalTests.csproj -------------------------------------------------------------------------------- /EFCore.FirebirdSql.FunctionalTests/Util/ExtensionSql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql.FunctionalTests/Util/ExtensionSql.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql.FunctionalTests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "appDomain": "denied" 3 | } 4 | -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Design/Internal/FbAnnotationCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Design/Internal/FbAnnotationCodeGenerator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Design/Internal/FbDesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Design/Internal/FbDesignTimeServices.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Diagnostics/FbEventId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Diagnostics/FbEventId.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/EFCore.FirebirdSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/EFCore.FirebirdSql.csproj -------------------------------------------------------------------------------- /EFCore.FirebirdSql/EntityFramework.FirebirdSQL.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/EntityFramework.FirebirdSQL.snk -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbDatabaseFacadeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbDatabaseFacadeExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbDbContextOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbDbContextOptionsExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbMetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbMetadataExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbModelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbModelBuilderExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbPropertyBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbPropertyBuilderExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbQueryableExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbSharedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbSharedType.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/FbStringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/FbStringExtension.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Extensions/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Extensions/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Infrastructure/FbDbContextOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Infrastructure/FbDbContextOptionsBuilder.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Infrastructure/Internal/FbOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Infrastructure/Internal/FbOptionsExtension.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Infrastructure/Internal/IFbOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Infrastructure/Internal/IFbOptions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Internal/FbLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Internal/FbLoggerExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Internal/FbOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Internal/FbOptions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/Conventions/FbConventionSetBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/Conventions/FbConventionSetBuilder.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/Conventions/Internal/FbValueGenerationStrategyConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/Conventions/Internal/FbValueGenerationStrategyConvention.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/FbModelAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/FbModelAnnotations.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/FbPropertyAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/FbPropertyAnnotations.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/FbValueGenerationStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/FbValueGenerationStrategy.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/IFbModelAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/IFbModelAnnotations.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/IFbPropertyAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/IFbPropertyAnnotations.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/Internal/FbAnnotationNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/Internal/FbAnnotationNames.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/Internal/FbInternalMetadataBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/Internal/FbInternalMetadataBuilderExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/Internal/FbModelBuilderAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/Internal/FbModelBuilderAnnotations.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Metadata/Internal/FbPropertyBuilderAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Metadata/Internal/FbPropertyBuilderAnnotations.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Migrations/FbMigrationSqlGeneratorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Migrations/FbMigrationSqlGeneratorBehavior.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Migrations/FbMigrationsSqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Migrations/FbMigrationsSqlGenerator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Migrations/IFbMigrationSqlGeneratorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Migrations/IFbMigrationSqlGeneratorBehavior.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Migrations/Internal/FbHistoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Migrations/Internal/FbHistoryRepository.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Migrations/Internal/FbMigrationsAnnotationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Migrations/Internal/FbMigrationsAnnotationProvider.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Migrations/Operations/FbCreateDatabaseOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Migrations/Operations/FbCreateDatabaseOperation.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Migrations/Operations/FbDropDatabaseOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Migrations/Operations/FbDropDatabaseOperation.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/FbStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/FbStrings.Designer.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/FbStrings.Designer.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/FbStrings.Designer.tt -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/FbStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/FbStrings.resx -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/FirebirdSql.EntityFrameworkCore.Firebird.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/FirebirdSql.EntityFrameworkCore.Firebird.snk -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/Resources.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Properties/Resources.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Properties/Resources.tt -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbContainsOptimizedTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbContainsOptimizedTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbConvertTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbConvertTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbDateAddTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbDateAddTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbDateTimeMemberTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbDateTimeMemberTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbEndsWithOptimizedTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbEndsWithOptimizedTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbMathTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbMathTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbNewGuidTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbNewGuidTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbObjectToStringTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbObjectToStringTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStartsWithOptimizedTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStartsWithOptimizedTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringIsNullOrWhiteSpaceTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringIsNullOrWhiteSpaceTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringLengthTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringLengthTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringReplaceTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringReplaceTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringSubstringTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringSubstringTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringToLowerTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringToLowerTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringToUpperTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringToUpperTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringTrimTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionTranslators/Internal/FbStringTrimTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionVisitors/Internal/FbSqlTranslatingExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionVisitors/Internal/FbSqlTranslatingExpressionVisitor.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/ExpressionVisitors/Internal/FbSqlTranslatingExpressionVisitorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/ExpressionVisitors/Internal/FbSqlTranslatingExpressionVisitorFactory.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/Expressions/Internal/FbExtractExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/Expressions/Internal/FbExtractExpression.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/Expressions/Internal/FbStringExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/Expressions/Internal/FbStringExpression.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/FbCompilationContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/FbCompilationContextFactory.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/MethodsTranslators/FbCompositeMemberTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/MethodsTranslators/FbCompositeMemberTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/MethodsTranslators/FbCompositeMethodCallTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/MethodsTranslators/FbCompositeMethodCallTranslator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/Operators/WithLockExpressionNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/Operators/WithLockExpressionNode.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/Operators/WithLockResultOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/Operators/WithLockResultOperator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/Sql/Internal/FbQuerySqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/Sql/Internal/FbQuerySqlGenerator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/Sql/Internal/FbQuerySqlGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/Sql/Internal/FbQuerySqlGeneratorFactory.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Query/Sql/Internal/IFbExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Query/Sql/Internal/IFbExpressionVisitor.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Scaffolding/Internal/FbDataReaderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Scaffolding/Internal/FbDataReaderExtension.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Scaffolding/Internal/FbDatabaseModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Scaffolding/Internal/FbDatabaseModelFactory.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Scaffolding/Internal/FbScaffoldingCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Scaffolding/Internal/FbScaffoldingCodeGenerator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Scaffolding/Metadata/FbColumnModelAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Scaffolding/Metadata/FbColumnModelAnnotations.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Scaffolding/Metadata/FbDatabaseModelAnnotationNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Scaffolding/Metadata/FbDatabaseModelAnnotationNames.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Scaffolding/Metadata/FbDatabaseModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Scaffolding/Metadata/FbDatabaseModelExtensions.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Scaffolding/Metadata/FbIndexModelAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Scaffolding/Metadata/FbIndexModelAnnotations.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/FbDatabaseCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/FbDatabaseCreator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/FbRelationalCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/FbRelationalCommand.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/FbRelationalConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/FbRelationalConnection.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/FbRelationalTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/FbRelationalTransaction.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/FbSqlGeneratorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/FbSqlGeneratorHelper.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/IFbRelationalConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/IFbRelationalConnection.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/IFbSqlGeneratorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/IFbSqlGeneratorHelper.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/Mapping/FbBoolTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/Mapping/FbBoolTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/Mapping/FbByteArrayTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/Mapping/FbByteArrayTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/Mapping/FbDateTimeTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/Mapping/FbDateTimeTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/Mapping/FbGuidTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/Mapping/FbGuidTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/Mapping/FbStringTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/Mapping/FbStringTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/Mapping/FbTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/Mapping/FbTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Storage/Internal/Mapping/FbTypeMappingSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Storage/Internal/Mapping/FbTypeMappingSource.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Update/Internal/FbBatchExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Update/Internal/FbBatchExecutor.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Update/Internal/FbModificationCommandBatchFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Update/Internal/FbModificationCommandBatchFactory.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Update/Internal/FbUpdateSqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Update/Internal/FbUpdateSqlGenerator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Update/Internal/IFbUpdateSqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Update/Internal/IFbUpdateSqlGenerator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/Utilities/TranslatorMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/Utilities/TranslatorMethods.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/ValueGeneration/Internal/FbSequentialGuidValueGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/ValueGeneration/Internal/FbSequentialGuidValueGenerator.cs -------------------------------------------------------------------------------- /EFCore.FirebirdSql/ValueGeneration/Internal/FbValueGeneratorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirebirdSql/ValueGeneration/Internal/FbValueGeneratorSelector.cs -------------------------------------------------------------------------------- /EFCore.FirerbirdSql.ScaffoldTest/EFCore.FirerbirdSql.ScaffoldTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirerbirdSql.ScaffoldTest/EFCore.FirerbirdSql.ScaffoldTest.csproj -------------------------------------------------------------------------------- /EFCore.FirerbirdSql.ScaffoldTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirerbirdSql.ScaffoldTest/Program.cs -------------------------------------------------------------------------------- /EFCore.FirerbirdSql.ScaffoldTest/scaffold.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/EFCore.FirerbirdSql.ScaffoldTest/scaffold.ps1 -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/appveyor.yml -------------------------------------------------------------------------------- /msbuild.binlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralmsdeveloper/EntityFrameworkCore.FirebirdSQL/HEAD/msbuild.binlog --------------------------------------------------------------------------------