Kusumoto / PrimeNG.TableFilter

Helper for use the PrimeNG table load lazy filter in backend use LINQ to Entity
MIT License
17 stars 10 forks source link

Filtering nested properties #43

Open GithubPatrick91 opened 8 months ago

GithubPatrick91 commented 8 months ago

Is it supported to filter nested object properties like following example?

class Company
{
   string Id;
   Website website;
}

class Website 
{
    string Id;
    string url;
}

And the sort field from the (companies table) frontend is like: SortField: "website.url"

When i try to sort like this, an error occurs:

System.InvalidOperationException: 'Operation is not valid due to the current state of the object.'