├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build.yml │ ├── pr.yml │ └── publish.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── .whitesource ├── Directory.Build.props ├── LICENSE.txt ├── NuGet.config ├── README.md ├── YesSql.sln ├── global.json ├── samples ├── YesSql.Bench │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── YesSql.Bench.csproj ├── YesSql.Samples.FullText │ ├── Indexes │ │ ├── ArticleByWord.cs │ │ └── ArticleIndexProvider.cs │ ├── Models │ │ └── Article.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Tokenizers │ │ ├── ITokenFilter.cs │ │ ├── ITokenizer.cs │ │ ├── StopWordFilter.cs │ │ └── WhiteSpaceTokenizer.cs │ └── YesSql.Samples.FullText.csproj ├── YesSql.Samples.Hi │ ├── Indexes │ │ ├── BlogPostByAuthor.cs │ │ ├── BlogPostByDay.cs │ │ └── BlogPostIndexProvider.cs │ ├── Models │ │ └── BlogPost.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── YesSql.Samples.Hi.csproj ├── YesSql.Samples.Performance │ ├── Benchmarks.cs │ ├── Program.cs │ ├── User.cs │ └── YesSql.Samples.Performance.csproj └── YesSql.Samples.Web │ ├── Controllers │ └── HomeController.cs │ ├── Indexes │ └── BlogPostIndexProvider.cs │ ├── ModelBinding │ ├── FilterEngineModelBinder.cs │ └── QueryFilterEngineModelBinder.cs │ ├── Models │ └── BlogPost.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ └── WebQueryExecutionContext.cs │ ├── ViewModels │ └── BlogPostViewModel.cs │ ├── Views │ ├── Home │ │ └── Index.cshtml │ └── _ViewImports.cshtml │ └── YesSql.Samples.Web.csproj ├── src ├── Directory.Build.props ├── Directory.Packages.props ├── Versions.props ├── YesSql.Abstractions │ ├── Commands │ │ ├── IAddColumnCommand.cs │ │ ├── IAddIndexCommand.cs │ │ ├── IAlterColumnCommand.cs │ │ ├── IAlterTableCommand.cs │ │ ├── IColumnCommand.cs │ │ ├── ICreateColumnCommand.cs │ │ ├── ICreateForeignKeyCommand.cs │ │ ├── ICreateSchemaCommand.cs │ │ ├── ICreateTableCommand.cs │ │ ├── IDropColumnCommand.cs │ │ ├── IDropForeignKeyCommand.cs │ │ ├── IDropIndexCommand.cs │ │ ├── IDropTableCommand.cs │ │ ├── IRenameColumnCommand.cs │ │ ├── ISchemaCommand.cs │ │ ├── ISqlStatementCommand.cs │ │ └── ITableCommand.cs │ ├── ConcurrencyException.cs │ ├── Document.cs │ ├── IAccessor.cs │ ├── IAccessorFactory.cs │ ├── ICollectionName.cs │ ├── ICommandInterpreter.cs │ ├── ICompiledQuery.cs │ ├── IConfiguration.cs │ ├── IConnectionFactory.cs │ ├── IContentSerializer.cs │ ├── IIdGenerator.cs │ ├── IQuery.cs │ ├── ISchemaBuilder.cs │ ├── ISession.cs │ ├── ISqlBuilder.cs │ ├── ISqlDialect.cs │ ├── ISqlFunction.cs │ ├── IStore.cs │ ├── IStringBuilder.cs │ ├── ITableNameConvention.cs │ ├── ITypeService.cs │ ├── IdentityColumnSize.cs │ ├── Indexes │ │ ├── DescribeContext.cs │ │ ├── DescribeFor.cs │ │ ├── IDescriptor.cs │ │ ├── IIndex.cs │ │ ├── IIndexProvider.cs │ │ ├── IndexDescriptor.cs │ │ ├── IndexProvider.cs │ │ ├── MapIndex.cs │ │ └── ReduceIndex.cs │ ├── JoinType.cs │ ├── QueryExtensions.cs │ ├── SchemaBuilderExtensions.cs │ ├── SessionExtensions.cs │ ├── SimplifiedTypeNameAttribute.cs │ ├── SqlBuilderExtensions.cs │ ├── Storage │ │ ├── DocumentIdentity.cs │ │ └── IIdentityEntity.cs │ └── YesSql.Abstractions.csproj ├── YesSql.Core │ ├── Commands │ │ ├── BatchCommand.cs │ │ ├── CreateDocumentCommand.cs │ │ ├── CreateIndexCommand.cs │ │ ├── DeleteDocumentCommand.cs │ │ ├── DeleteMapIndexCommand.cs │ │ ├── DeleteReduceIndexCommand.cs │ │ ├── DocumentCommand.cs │ │ ├── IIndexCommand.cs │ │ ├── IndexCommand.cs │ │ ├── UpdateDocumentCommand.cs │ │ └── UpdateIndexCommand.cs │ ├── Configuration.cs │ ├── ConfigurationExtensions.cs │ ├── Data │ │ ├── AliasBinding.cs │ │ ├── DapperDataHandlers.cs │ │ ├── MapState.cs │ │ ├── NullableThumbprintFactory.cs │ │ ├── PropertyAccessorFactory.cs │ │ ├── WorkDispatcher.cs │ │ └── WorkerQueryKey.cs │ ├── DbConnectionProviderFactory.cs │ ├── GlobalSuppressions.cs │ ├── Indexes │ │ └── IdentityMap.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Provider │ │ ├── BaseDialect.cs │ │ └── ServiceCollectionExtensions.cs │ ├── Serialization │ │ ├── DefaultContentSerializer.cs │ │ ├── DynamicJsonConverter.cs │ │ ├── PropertyInfoAccessor.cs │ │ └── UtcDateTimeJsonConverter.cs │ ├── Services │ │ ├── DbBlockIdGenerator.cs │ │ ├── DefaultIdGenerator.cs │ │ ├── DefaultQuery.cs │ │ ├── DefaultTableNameConvention.cs │ │ ├── EnumerableExtensions.cs │ │ ├── IndexProviderRegisterExtensions.cs │ │ ├── PredicateNodes.cs │ │ └── TypeService.cs │ ├── Session.cs │ ├── SessionState.cs │ ├── Sql │ │ ├── BaseComandInterpreter.cs │ │ ├── MappingFunction.cs │ │ ├── Schema │ │ │ ├── AddColumnCommand.cs │ │ │ ├── AddIndexCommand.cs │ │ │ ├── AlterColumnCommand.cs │ │ │ ├── AlterTableCommand.cs │ │ │ ├── ColumnCommand.cs │ │ │ ├── CreateColumnCommand.cs │ │ │ ├── CreateForeignKeyCommand.cs │ │ │ ├── CreateSchemaCommand.cs │ │ │ ├── CreateTableCommand.cs │ │ │ ├── DropColumnCommand.cs │ │ │ ├── DropForeignKeyCommand.cs │ │ │ ├── DropIndexCommand.cs │ │ │ ├── DropTableCommand.cs │ │ │ ├── RenameColumnCommand .cs │ │ │ ├── SchemaCommand.cs │ │ │ ├── SqlStatementCommand.cs │ │ │ └── TableCommand.cs │ │ ├── SchemaBuilder.cs │ │ ├── SqlBuilder.cs │ │ └── TemplateFunction.cs │ ├── Store.cs │ ├── StoreFactory.cs │ ├── Utils │ │ ├── HashHelper.cs │ │ └── RentedStringBuilder.cs │ └── YesSql.Core.csproj ├── YesSql.Filters.Abstractions │ ├── Builders │ │ ├── BooleanEngineBuilder.cs │ │ ├── DefaultTermEngineBuilder.cs │ │ ├── NamedTermEngineBuilder.cs │ │ ├── OperatorBuilder.cs │ │ ├── TermEngineBuilder.cs │ │ └── UnaryEngineBuilder.cs │ ├── Nodes │ │ ├── FilterNode.cs │ │ ├── OperatorNodes.cs │ │ └── TermNodes.cs │ ├── Services │ │ ├── FilterExecutionContext.cs │ │ ├── FilterResult.cs │ │ ├── IFilterParser.cs │ │ ├── IFilterVisitor.cs │ │ └── TermOption.cs │ └── YesSql.Filters.Abstractions.csproj ├── YesSql.Filters.Query │ ├── IQueryParser.cs │ ├── QueryBooleanEngineBuilder.cs │ ├── QueryEngineBuilder.cs │ ├── QueryEngineBuilderExtensions.cs │ ├── QueryFilterResult.cs │ ├── QueryFilterResultExtensions.cs │ ├── QueryTermEngineBuilderExtensions.cs │ ├── QueryUnaryEngineBuilder.cs │ ├── Services │ │ ├── QueryExecutionContext.cs │ │ ├── QueryFilterVisitor.cs │ │ ├── QueryParseContext.cs │ │ ├── QueryParser.cs │ │ └── QueryTermOption.cs │ └── YesSql.Filters.Query.csproj ├── YesSql.Provider.MySql │ ├── MySqlCommandInterpreter.cs │ ├── MySqlDbProviderOptionsExtensions.cs │ ├── MySqlDialect.cs │ └── YesSql.Provider.MySql.csproj ├── YesSql.Provider.PostgreSql │ ├── PostgreSqlCommandInterpreter.cs │ ├── PostgreSqlDbProviderOptionsExtensions.cs │ ├── PostgreSqlDialect.cs │ └── YesSql.Provider.PostgreSql.csproj ├── YesSql.Provider.SqlServer │ ├── SqlServerComandInterpreter.cs │ ├── SqlServerDbProviderOptionsExtensions.cs │ ├── SqlServerDialect.cs │ └── YesSql.Provider.SqlServer.csproj ├── YesSql.Provider.Sqlite │ ├── GlobalSuppressions.cs │ ├── SqliteCommandInterpreter.cs │ ├── SqliteDbProviderOptionsExtensions.cs │ ├── SqliteDialect.cs │ └── YesSql.Provider.Sqlite.csproj ├── YesSql │ └── YesSql.csproj ├── YesSqlKey.snk └── yessql.pub └── test └── YesSql.Tests ├── Commands └── FailingCommand.cs ├── CompiledQueries └── PersonByAgeCompileQuery.cs ├── ConsoleLogger.cs ├── CoreTests.cs ├── DecimalPrecisionAndScaleDataGenerator.cs ├── Filters └── QueryEngineTests.cs ├── Fixtures ├── MySqlContainerFixture.cs ├── PostgreSqlContainerFixture.cs ├── SqlServer2017ContainerFixture.cs ├── SqlServer2019ContainerFixture.cs └── SqlServerContainerFixture.cs ├── GlobalSuppressions.cs ├── HashHelperTests.cs ├── Indexes ├── ArticleByDate.cs ├── ArticleByDay.cs ├── AttachmentByDay.cs ├── Binary.cs ├── CarIndex.cs ├── EmailByAttachment.cs ├── LongestNameByLetter.cs ├── PersonByAge.cs ├── PersonByBothNamesCol.cs ├── PersonByName.cs ├── PersonByNameCol.cs ├── PersonByNullableAge.cs ├── PersonIdentity.cs ├── PersonsByName.cs ├── PropertyIndex.cs ├── PublishedArticles.cs ├── Shapes.cs ├── TypesIndex.cs └── User.cs ├── Models ├── Animal.cs ├── Article.cs ├── Car.cs ├── Drawing.cs ├── Email.cs ├── Person.cs ├── Products.cs ├── Property.cs ├── TestConstants.cs └── Tree.cs ├── MySqlTests.cs ├── NullableThumbprint ├── Discriminators.cs └── NullableThumbprintFactoryTests.cs ├── PostgreSqlLegacyIdentityTests.cs ├── PostgreSqlTests.cs ├── Properties └── AssemblyInfo.cs ├── ProviderTests.cs ├── SqlServer2017Tests.cs ├── SqlServer2019Tests.cs ├── SqlServerTests.cs ├── SqliteLegacyIdentityTests.cs ├── SqliteTests.cs ├── TemporaryFolder.cs ├── TestCollections.cs ├── TestLogger.cs ├── WorkerQueryKeyTests.cs └── YesSql.Tests.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [sebastienros] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/.whitesource -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/README.md -------------------------------------------------------------------------------- /YesSql.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/YesSql.sln -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/global.json -------------------------------------------------------------------------------- /samples/YesSql.Bench/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Bench/Program.cs -------------------------------------------------------------------------------- /samples/YesSql.Bench/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Bench/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/YesSql.Bench/YesSql.Bench.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Bench/YesSql.Bench.csproj -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Indexes/ArticleByWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Indexes/ArticleByWord.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Indexes/ArticleIndexProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Indexes/ArticleIndexProvider.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Models/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Models/Article.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Program.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Tokenizers/ITokenFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Tokenizers/ITokenFilter.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Tokenizers/ITokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Tokenizers/ITokenizer.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Tokenizers/StopWordFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Tokenizers/StopWordFilter.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/Tokenizers/WhiteSpaceTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/Tokenizers/WhiteSpaceTokenizer.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.FullText/YesSql.Samples.FullText.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.FullText/YesSql.Samples.FullText.csproj -------------------------------------------------------------------------------- /samples/YesSql.Samples.Hi/Indexes/BlogPostByAuthor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Hi/Indexes/BlogPostByAuthor.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Hi/Indexes/BlogPostByDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Hi/Indexes/BlogPostByDay.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Hi/Indexes/BlogPostIndexProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Hi/Indexes/BlogPostIndexProvider.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Hi/Models/BlogPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Hi/Models/BlogPost.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Hi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Hi/Program.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Hi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Hi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Hi/YesSql.Samples.Hi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Hi/YesSql.Samples.Hi.csproj -------------------------------------------------------------------------------- /samples/YesSql.Samples.Performance/Benchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Performance/Benchmarks.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Performance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Performance/Program.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Performance/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Performance/User.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Performance/YesSql.Samples.Performance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Performance/YesSql.Samples.Performance.csproj -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/Indexes/BlogPostIndexProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/Indexes/BlogPostIndexProvider.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/ModelBinding/FilterEngineModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/ModelBinding/FilterEngineModelBinder.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/ModelBinding/QueryFilterEngineModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/ModelBinding/QueryFilterEngineModelBinder.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/Models/BlogPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/Models/BlogPost.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/Program.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/Services/WebQueryExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/Services/WebQueryExecutionContext.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/ViewModels/BlogPostViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/ViewModels/BlogPostViewModel.cs -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/YesSql.Samples.Web/YesSql.Samples.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/samples/YesSql.Samples.Web/YesSql.Samples.Web.csproj -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/Versions.props -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IAddColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IAddColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IAddIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IAddIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IAlterColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IAlterColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IAlterTableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IAlterTableCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/ICreateColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/ICreateColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/ICreateForeignKeyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/ICreateForeignKeyCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/ICreateSchemaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/ICreateSchemaCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/ICreateTableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/ICreateTableCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IDropColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IDropColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IDropForeignKeyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IDropForeignKeyCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IDropIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IDropIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IDropTableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IDropTableCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/IRenameColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/IRenameColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/ISchemaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/ISchemaCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/ISqlStatementCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/ISqlStatementCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Commands/ITableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Commands/ITableCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ConcurrencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ConcurrencyException.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Document.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IAccessor.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IAccessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IAccessorFactory.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ICollectionName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ICollectionName.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ICommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ICommandInterpreter.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ICompiledQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ICompiledQuery.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IConfiguration.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IConnectionFactory.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IContentSerializer.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IIdGenerator.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IQuery.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ISchemaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ISchemaBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ISession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ISession.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ISqlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ISqlBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ISqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ISqlDialect.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ISqlFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ISqlFunction.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IStore.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IStringBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ITableNameConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ITableNameConvention.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/ITypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/ITypeService.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/IdentityColumnSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/IdentityColumnSize.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/DescribeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/DescribeContext.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/DescribeFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/DescribeFor.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/IDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/IDescriptor.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/IIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/IIndex.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/IIndexProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/IIndexProvider.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/IndexDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/IndexDescriptor.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/IndexProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/IndexProvider.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/MapIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/MapIndex.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Indexes/ReduceIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Indexes/ReduceIndex.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/JoinType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/JoinType.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/QueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/QueryExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/SchemaBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/SchemaBuilderExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/SessionExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/SimplifiedTypeNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/SimplifiedTypeNameAttribute.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/SqlBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/SqlBuilderExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Storage/DocumentIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Storage/DocumentIdentity.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/Storage/IIdentityEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/Storage/IIdentityEntity.cs -------------------------------------------------------------------------------- /src/YesSql.Abstractions/YesSql.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Abstractions/YesSql.Abstractions.csproj -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/BatchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/BatchCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/CreateDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/CreateDocumentCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/CreateIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/CreateIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/DeleteDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/DeleteDocumentCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/DeleteMapIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/DeleteMapIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/DeleteReduceIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/DeleteReduceIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/DocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/DocumentCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/IIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/IIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/IndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/IndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/UpdateDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/UpdateDocumentCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Commands/UpdateIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Commands/UpdateIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Configuration.cs -------------------------------------------------------------------------------- /src/YesSql.Core/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Data/AliasBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Data/AliasBinding.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Data/DapperDataHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Data/DapperDataHandlers.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Data/MapState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Data/MapState.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Data/NullableThumbprintFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Data/NullableThumbprintFactory.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Data/PropertyAccessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Data/PropertyAccessorFactory.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Data/WorkDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Data/WorkDispatcher.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Data/WorkerQueryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Data/WorkerQueryKey.cs -------------------------------------------------------------------------------- /src/YesSql.Core/DbConnectionProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/DbConnectionProviderFactory.cs -------------------------------------------------------------------------------- /src/YesSql.Core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Indexes/IdentityMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Indexes/IdentityMap.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Provider/BaseDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Provider/BaseDialect.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Provider/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Provider/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Serialization/DefaultContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Serialization/DefaultContentSerializer.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Serialization/DynamicJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Serialization/DynamicJsonConverter.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Serialization/PropertyInfoAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Serialization/PropertyInfoAccessor.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Serialization/UtcDateTimeJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Serialization/UtcDateTimeJsonConverter.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Services/DbBlockIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Services/DbBlockIdGenerator.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Services/DefaultIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Services/DefaultIdGenerator.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Services/DefaultQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Services/DefaultQuery.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Services/DefaultTableNameConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Services/DefaultTableNameConvention.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Services/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Services/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Services/IndexProviderRegisterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Services/IndexProviderRegisterExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Services/PredicateNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Services/PredicateNodes.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Services/TypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Services/TypeService.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Session.cs -------------------------------------------------------------------------------- /src/YesSql.Core/SessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/SessionState.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/BaseComandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/BaseComandInterpreter.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/MappingFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/MappingFunction.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/AddColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/AddColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/AddIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/AddIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/AlterColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/AlterColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/AlterTableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/AlterTableCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/ColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/ColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/CreateColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/CreateColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/CreateForeignKeyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/CreateForeignKeyCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/CreateSchemaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/CreateSchemaCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/CreateTableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/CreateTableCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/DropColumnCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/DropColumnCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/DropForeignKeyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/DropForeignKeyCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/DropIndexCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/DropIndexCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/DropTableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/DropTableCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/RenameColumnCommand .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/RenameColumnCommand .cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/SchemaCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/SchemaCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/SqlStatementCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/SqlStatementCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/Schema/TableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/Schema/TableCommand.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/SchemaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/SchemaBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/SqlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/SqlBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Sql/TemplateFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Sql/TemplateFunction.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Store.cs -------------------------------------------------------------------------------- /src/YesSql.Core/StoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/StoreFactory.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Utils/HashHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Utils/HashHelper.cs -------------------------------------------------------------------------------- /src/YesSql.Core/Utils/RentedStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/Utils/RentedStringBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Core/YesSql.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Core/YesSql.Core.csproj -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Builders/BooleanEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Builders/BooleanEngineBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Builders/DefaultTermEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Builders/DefaultTermEngineBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Builders/NamedTermEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Builders/NamedTermEngineBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Builders/OperatorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Builders/OperatorBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Builders/TermEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Builders/TermEngineBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Builders/UnaryEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Builders/UnaryEngineBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Nodes/FilterNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Nodes/FilterNode.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Nodes/OperatorNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Nodes/OperatorNodes.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Nodes/TermNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Nodes/TermNodes.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Services/FilterExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Services/FilterExecutionContext.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Services/FilterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Services/FilterResult.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Services/IFilterParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Services/IFilterParser.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Services/IFilterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Services/IFilterVisitor.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/Services/TermOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/Services/TermOption.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Abstractions/YesSql.Filters.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Abstractions/YesSql.Filters.Abstractions.csproj -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/IQueryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/IQueryParser.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/QueryBooleanEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/QueryBooleanEngineBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/QueryEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/QueryEngineBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/QueryEngineBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/QueryEngineBuilderExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/QueryFilterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/QueryFilterResult.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/QueryFilterResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/QueryFilterResultExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/QueryTermEngineBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/QueryTermEngineBuilderExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/QueryUnaryEngineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/QueryUnaryEngineBuilder.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/Services/QueryExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/Services/QueryExecutionContext.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/Services/QueryFilterVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/Services/QueryFilterVisitor.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/Services/QueryParseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/Services/QueryParseContext.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/Services/QueryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/Services/QueryParser.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/Services/QueryTermOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/Services/QueryTermOption.cs -------------------------------------------------------------------------------- /src/YesSql.Filters.Query/YesSql.Filters.Query.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Filters.Query/YesSql.Filters.Query.csproj -------------------------------------------------------------------------------- /src/YesSql.Provider.MySql/MySqlCommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.MySql/MySqlCommandInterpreter.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.MySql/MySqlDbProviderOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.MySql/MySqlDbProviderOptionsExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.MySql/MySqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.MySql/MySqlDialect.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.MySql/YesSql.Provider.MySql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.MySql/YesSql.Provider.MySql.csproj -------------------------------------------------------------------------------- /src/YesSql.Provider.PostgreSql/PostgreSqlCommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.PostgreSql/PostgreSqlCommandInterpreter.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.PostgreSql/PostgreSqlDbProviderOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.PostgreSql/PostgreSqlDbProviderOptionsExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.PostgreSql/PostgreSqlDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.PostgreSql/PostgreSqlDialect.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.PostgreSql/YesSql.Provider.PostgreSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.PostgreSql/YesSql.Provider.PostgreSql.csproj -------------------------------------------------------------------------------- /src/YesSql.Provider.SqlServer/SqlServerComandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.SqlServer/SqlServerComandInterpreter.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.SqlServer/SqlServerDbProviderOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.SqlServer/SqlServerDbProviderOptionsExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.SqlServer/SqlServerDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.SqlServer/SqlServerDialect.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.SqlServer/YesSql.Provider.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.SqlServer/YesSql.Provider.SqlServer.csproj -------------------------------------------------------------------------------- /src/YesSql.Provider.Sqlite/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.Sqlite/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.Sqlite/SqliteCommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.Sqlite/SqliteCommandInterpreter.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.Sqlite/SqliteDbProviderOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.Sqlite/SqliteDbProviderOptionsExtensions.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.Sqlite/SqliteDialect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.Sqlite/SqliteDialect.cs -------------------------------------------------------------------------------- /src/YesSql.Provider.Sqlite/YesSql.Provider.Sqlite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql.Provider.Sqlite/YesSql.Provider.Sqlite.csproj -------------------------------------------------------------------------------- /src/YesSql/YesSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSql/YesSql.csproj -------------------------------------------------------------------------------- /src/YesSqlKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/YesSqlKey.snk -------------------------------------------------------------------------------- /src/yessql.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/src/yessql.pub -------------------------------------------------------------------------------- /test/YesSql.Tests/Commands/FailingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Commands/FailingCommand.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/CompiledQueries/PersonByAgeCompileQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/CompiledQueries/PersonByAgeCompileQuery.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/ConsoleLogger.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/CoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/CoreTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/DecimalPrecisionAndScaleDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/DecimalPrecisionAndScaleDataGenerator.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Filters/QueryEngineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Filters/QueryEngineTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Fixtures/MySqlContainerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Fixtures/MySqlContainerFixture.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Fixtures/PostgreSqlContainerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Fixtures/PostgreSqlContainerFixture.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Fixtures/SqlServer2017ContainerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Fixtures/SqlServer2017ContainerFixture.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Fixtures/SqlServer2019ContainerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Fixtures/SqlServer2019ContainerFixture.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Fixtures/SqlServerContainerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Fixtures/SqlServerContainerFixture.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/HashHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/HashHelperTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/ArticleByDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/ArticleByDate.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/ArticleByDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/ArticleByDay.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/AttachmentByDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/AttachmentByDay.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/Binary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/Binary.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/CarIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/CarIndex.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/EmailByAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/EmailByAttachment.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/LongestNameByLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/LongestNameByLetter.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PersonByAge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PersonByAge.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PersonByBothNamesCol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PersonByBothNamesCol.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PersonByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PersonByName.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PersonByNameCol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PersonByNameCol.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PersonByNullableAge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PersonByNullableAge.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PersonIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PersonIdentity.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PersonsByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PersonsByName.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PropertyIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PropertyIndex.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/PublishedArticles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/PublishedArticles.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/Shapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/Shapes.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/TypesIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/TypesIndex.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Indexes/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Indexes/User.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Animal.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Article.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Car.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Drawing.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Email.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Person.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Products.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Products.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Property.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/TestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/TestConstants.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Models/Tree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Models/Tree.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/MySqlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/MySqlTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/NullableThumbprint/Discriminators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/NullableThumbprint/Discriminators.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/NullableThumbprint/NullableThumbprintFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/NullableThumbprint/NullableThumbprintFactoryTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/PostgreSqlLegacyIdentityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/PostgreSqlLegacyIdentityTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/PostgreSqlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/PostgreSqlTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/ProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/ProviderTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/SqlServer2017Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/SqlServer2017Tests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/SqlServer2019Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/SqlServer2019Tests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/SqlServerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/SqlServerTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/SqliteLegacyIdentityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/SqliteLegacyIdentityTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/SqliteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/SqliteTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/TemporaryFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/TemporaryFolder.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/TestCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/TestCollections.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/TestLogger.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/WorkerQueryKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/WorkerQueryKeyTests.cs -------------------------------------------------------------------------------- /test/YesSql.Tests/YesSql.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastienros/yessql/HEAD/test/YesSql.Tests/YesSql.Tests.csproj --------------------------------------------------------------------------------