├── .gitattributes ├── .gitignore ├── DynamicQuery.sln ├── LICENSE.md ├── PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson ├── MvcBuilderExtensions.cs └── PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson.csproj ├── PoweredSoft.DynamicQuery.AspNetCore ├── MvcBuilderExtensions.cs └── PoweredSoft.DynamicQuery.AspNetCore.csproj ├── PoweredSoft.DynamicQuery.Cli ├── PoweredSoft.DynamicQuery.Cli.csproj └── Program.cs ├── PoweredSoft.DynamicQuery.Core ├── AggregateType.cs ├── FilterType.cs ├── IAfterReadInterceptor.cs ├── IAggregate.cs ├── IAggregateInterceptor.cs ├── IBeforeQueryFilterInterceptor.cs ├── ICompositeFilter.cs ├── IFilter.cs ├── IFilterInterceptor.cs ├── IGroup.cs ├── IGroupingInterceptor.cs ├── IIncludeStrategyInterceptor.cs ├── IInterceptQueryExecutionOptions.cs ├── INoSortInterceptor.cs ├── IQueryConvertInterceptor.cs ├── IQueryCriteria.cs ├── IQueryExecutionOptions.cs ├── IQueryHandler.cs ├── IQueryInterceptor.cs ├── IQueryInterceptorProvider.cs ├── IQueryResult.cs ├── ISimpleFilter.cs ├── ISort.cs ├── ISortInterceptor.cs ├── PoweredSoft.DynamicQuery.Core.csproj └── QueryExecutionOptions.cs ├── PoweredSoft.DynamicQuery.NewtonsoftJson ├── DynamicQueryJsonConverter.cs ├── Extensions.cs └── PoweredSoft.DynamicQuery.NewtonsoftJson.csproj ├── PoweredSoft.DynamicQuery.Test ├── AggregateInterceptorTests.cs ├── AggregateTests.cs ├── AsyncTests.cs ├── BeforeFilterTests.cs ├── ConvertibleInterceptorTests.cs ├── CriteriaTests.cs ├── DeserializeTests.cs ├── FilterInterceptorTests.cs ├── FilterTests.cs ├── GroupInterceptorTests.cs ├── GroupTests.cs ├── IncludeStrategyTests.cs ├── Mock │ ├── Entities.cs │ ├── MockContext.cs │ ├── MockContextFactory.cs │ ├── TestSeeders.cs │ └── Ticket.cs ├── MockQueryExecutionOptionsInterceptor.cs ├── NoSortTests.cs ├── PoweredSoft.DynamicQuery.Test.csproj ├── QueryProviderTests.cs ├── SortInterceptorTests.cs └── SortTests.cs ├── PoweredSoft.DynamicQuery ├── Aggregate.cs ├── Extensions │ ├── FilterExtensions.cs │ ├── FilterTypeExtensions.cs │ └── GroupResultExtensions.cs ├── Filter.cs ├── Group.cs ├── PoweredSoft.DynamicQuery.csproj ├── QueryCriteria.cs ├── QueryHandler.cs ├── QueryHandlerAsync.cs ├── QueryHandlerBase.cs ├── QueryInterceptorEqualityComparer.cs ├── QueryResult.cs ├── ServiceCollectionExtensions.cs └── Sort.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/.gitignore -------------------------------------------------------------------------------- /DynamicQuery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/DynamicQuery.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson/MvcBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson/MvcBuilderExtensions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson/PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson/PoweredSoft.DynamicQuery.AspNetCore.NewtonsoftJson.csproj -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.AspNetCore/MvcBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.AspNetCore/MvcBuilderExtensions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.AspNetCore/PoweredSoft.DynamicQuery.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.AspNetCore/PoweredSoft.DynamicQuery.AspNetCore.csproj -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Cli/PoweredSoft.DynamicQuery.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Cli/PoweredSoft.DynamicQuery.Cli.csproj -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Cli/Program.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/AggregateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/AggregateType.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/FilterType.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IAfterReadInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IAfterReadInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IAggregate.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IAggregateInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IAggregateInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IBeforeQueryFilterInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IBeforeQueryFilterInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/ICompositeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/ICompositeFilter.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IFilter.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IFilterInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IFilterInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IGroup.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IGroupingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IGroupingInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IIncludeStrategyInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IIncludeStrategyInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IInterceptQueryExecutionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IInterceptQueryExecutionOptions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/INoSortInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/INoSortInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IQueryConvertInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IQueryConvertInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IQueryCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IQueryCriteria.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IQueryExecutionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IQueryExecutionOptions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IQueryHandler.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IQueryInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IQueryInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IQueryInterceptorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IQueryInterceptorProvider.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/IQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/IQueryResult.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/ISimpleFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/ISimpleFilter.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/ISort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/ISort.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/ISortInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/ISortInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/PoweredSoft.DynamicQuery.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/PoweredSoft.DynamicQuery.Core.csproj -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Core/QueryExecutionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Core/QueryExecutionOptions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.NewtonsoftJson/DynamicQueryJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.NewtonsoftJson/DynamicQueryJsonConverter.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.NewtonsoftJson/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.NewtonsoftJson/Extensions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.NewtonsoftJson/PoweredSoft.DynamicQuery.NewtonsoftJson.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.NewtonsoftJson/PoweredSoft.DynamicQuery.NewtonsoftJson.csproj -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/AggregateInterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/AggregateInterceptorTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/AggregateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/AggregateTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/AsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/AsyncTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/BeforeFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/BeforeFilterTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/ConvertibleInterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/ConvertibleInterceptorTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/CriteriaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/CriteriaTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/DeserializeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/DeserializeTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/FilterInterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/FilterInterceptorTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/FilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/FilterTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/GroupInterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/GroupInterceptorTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/GroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/GroupTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/IncludeStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/IncludeStrategyTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/Mock/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/Mock/Entities.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/Mock/MockContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/Mock/MockContext.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/Mock/MockContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/Mock/MockContextFactory.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/Mock/TestSeeders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/Mock/TestSeeders.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/Mock/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/Mock/Ticket.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/MockQueryExecutionOptionsInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/MockQueryExecutionOptionsInterceptor.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/NoSortTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/NoSortTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/PoweredSoft.DynamicQuery.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/PoweredSoft.DynamicQuery.Test.csproj -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/QueryProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/QueryProviderTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/SortInterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/SortInterceptorTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery.Test/SortTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery.Test/SortTests.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/Aggregate.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/Extensions/FilterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/Extensions/FilterExtensions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/Extensions/FilterTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/Extensions/FilterTypeExtensions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/Extensions/GroupResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/Extensions/GroupResultExtensions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/Filter.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/Group.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/PoweredSoft.DynamicQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/PoweredSoft.DynamicQuery.csproj -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/QueryCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/QueryCriteria.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/QueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/QueryHandler.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/QueryHandlerAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/QueryHandlerAsync.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/QueryHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/QueryHandlerBase.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/QueryInterceptorEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/QueryInterceptorEqualityComparer.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/QueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/QueryResult.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /PoweredSoft.DynamicQuery/Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/PoweredSoft.DynamicQuery/Sort.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoweredSoft/DynamicQuery/HEAD/README.md --------------------------------------------------------------------------------