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
Describe the bug
In RadzenDataGrid dont't work sort and filter with [ComplexType]
first class:
`public class PriceListService
{
[Key]
public int Id { get; set; }
[Required]
public PriceListServiceBase ServiceBase { get; set; } = new();
} second class:
[ComplexType]
public class PriceListServiceBase
{
public int Index { get; set; }
public string? Code { get; set; }
public string? ServiceName { get; set; }
}
`
**RadzenDataGrid **
We have
Exception: Comparing complex types to null is not supported.
Since you are using LoadData the sorting is at your premises in the event handler:
If the EF cannot translate such sort expression to SQL you can use ToList() for your data to sort in-memory.
Blazor project: https://github.com/Andrey-2021/RadzenDataGrid
Describe the bug
In RadzenDataGrid dont't work sort and filter with
[ComplexType]
first class:
`public class PriceListService
{
[Key]
public int Id { get; set; }
}
second class:
[ComplexType]
public class PriceListServiceBase
{
public int Index { get; set; }
public string? Code { get; set; }
public string? ServiceName { get; set; }
}
`
**RadzenDataGrid **

We have
Exception: Comparing complex types to null is not supported.
To Reproduce
Steps to reproduce the behavior:
we get an error: Exception: Comparing complex types to null is not supported.
Screenshots

The text was updated successfully, but these errors were encountered: