mrxten / QueryDesigner

QueryDesigner provides way of creating complex IQueryable filtering based on dynamic expression trees.
MIT License
74 stars 26 forks source link

Suggestion: Global Configuration #26

Open jeangatto opened 4 years ago

jeangatto commented 4 years ago

Give the option to define some global options, for all queries, type MaxPageSize, etc.

Example:

FilterSettings.Configure(opts =>
                {
                    opts.MaxTop = 1000;
                    opts.PageSize = 20;
                });.

Like: Community.OData.Linq: https://github.com/IharYakimush/comminity-data-odata-linq/wiki/7.-Configure-OData-at-application-startup

Best Regards,