Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hi,
In my code I have to issue a ReadAsync request to my custom adaptor like this:
var result = (await testAdapter.ReadAsync(new DataManagerRequest()
{
RequiresCounts = false,
Where = new List
{
new WhereFilter() { Field = nameof(Test.TestEnum), Operator = nameof(Operator.Equal).ToLowerInvariant(), value = TestEnum.Test_0 }
}
}) as IEnumerable
When the property TestEnum on the "Test" class is nullable this operation fails with
Since I've figured out a workaround this issue isn't critical, I just wanted to report it anyway since it took some time investigating this.
Looking forward to hearing from you.
Best regards
Daniel