This question is locked. New answers and comments are not allowed.
Hi,
I can add an initial filter like this:
However, for the life of me, I can't figure out how to add multiple filters. Can someone show me the proper syntax?
Thank you.
Ray
I can add an initial filter like this:
.Filterable(filtering => filtering.Filters(filters =>
{
filters.Add(obj => obj.OwnerFirstNameLastName).StartsWith((
string)this.ViewData["OwnerName"]);
}))
However, for the life of me, I can't figure out how to add multiple filters. Can someone show me the proper syntax?
Thank you.
Ray