Skip to content

Commit

Permalink
Fixed DataGrid CheckBoxList filter exception with Enum sub property
Browse files Browse the repository at this point in the history
  • Loading branch information
enchev committed Nov 8, 2024
1 parent 9101614 commit 9316170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Radzen.Blazor/QueryableExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ public static IQueryable<T> Where<T>(this IQueryable<T> source, IEnumerable<Radz
}
else
{
whereList.Add($@"(@{index}).Contains({property})", new object[] { column.GetFilterValue() });
whereList.Add($@"(@{index}).Contains({column.GetFilterProperty()})", new object[] { column.GetFilterValue() });
}
}
else
Expand Down

0 comments on commit 9316170

Please sign in to comment.