-
-
Notifications
You must be signed in to change notification settings - Fork 244
Closed
Labels
Description
1. Description
I just wanted to get to if there´s a chance to convert a IQueryable to a Dynamic Linq string value.
The reason for that is that I want to select data at frontend level, but sending the server the translated query as a string.
Of course I can write a query string, but when my dto model change, I need to reassure that every query string I´ve written is modified to the dto properties.
Maybe there´re extension methods I don´t know yet, but it would be nice to have something like this
_users.Where(x => x.UserName == "Test").OrderBy(x => x.UserName).ToDynamicLinqString();
Thank you in advance
Reactions are currently unavailable