You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NOTE: We do not look at .zip attachments for issue investigation.
Describe the bug
If i try a to filter a Property of a nested objekt, it dont work!
To Reproduce
Create a nested Item like
public record class EmployeeName
{
public string? FamilyName { get; set;}
public string? GivenName { get; set;}
}
public record class Employee5
{
public int? Id{ get; set;}
public EmployeeName? Name { get; set;}
public string? Designation { get; set;}
public DateOnlyß DOJ { get; set;}
public bool IsActive { get; set;}
}
Describe the bug
If i try a to filter a Property of a nested objekt, it dont work!
To Reproduce
Create a nested Item like
Create a grid like this:
Expected behavior
It should be possible to work, like on other not nested properties.
Possible Fix
In ExpressionExtensions.cs:
Change all of this line:
=>
In TypeExtensions.cs:
Add this methode:
Change this line:
=>
The text was updated successfully, but these errors were encountered: