Open VictorioBerra opened 5 years ago
Ideally, I need something like this:
var searchCustomersByEmployeeNameOrEmailExpression = NinjanyeSearch<Customer>(c => c.Employee.Name, c.Employee.EmailAddress) .Containing(viewModel.SearchQuery) .AsExpression();
I am trying to build up what is basically a object that holds my search configuration which gets mapped to a request to my API essentially.
I can then save that expression and pass it right to EntityFramework when I am ready.
Ideally, I need something like this:
I am trying to build up what is basically a object that holds my search configuration which gets mapped to a request to my API essentially.
I can then save that expression and pass it right to EntityFramework when I am ready.