Enis Necipoglu

Results 267 comments of Enis Necipoglu

I understand the problem but nothing to do in autofilterer library. Autofilterer generates only LINQ expressions and it doesn't know about your aspnetcore application or how to bind object properties....

Might be similar with https://github.com/dotnet/aspnetcore/issues/40752 --- Most probably this is the reason https://stackoverflow.com/questions/70260354/net-6-minimal-api-no-public-static-bool-request-tryparsestring-out-request

Institute is a different type than string, so `string` and `Institute` can't be compared. You should compare Search parameter to one of the Institute parameter. Something like`"Institute.Name"` should be working:...

Oh, sorry, I missed that Institute is an **enum**. Enums are numeric fields and stored as numeric value types in databases by default. If you want to compare strings to...

According to the error message, you can try adding `[FromQuery]` attribute but I don't think it'll work. How do you send the request? Can you share? The parameter should contain...

No need for now, but in the long term, I'll consider again

We can create some adapter packages for those libraries so they can be used with autofilterer without a pain

Keep this issue open until the development is completed for Generics support :)

We tried to create Blazor WebApp with local CLI build: ``` dotnet volo.Abp.Cli.dll new BlazorWebAppTest -t app --version 8.1.0-rc.1 -csf -tv -u blazor-webapp ``` There are no Blazor Web App...

Did you enabled CMS Kit Global Feature in the code? ```csharp GlobalFeatureManager.Instance.Modules.CmsKit(cmsKit => { cmsKit.EnableAll(); }); ``` https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Index#how-to-install