It seems to me that, because of the dependency on EntityFramework, we can not use DataList on Blazor web assembly.
If I am wrong please let me know how?
If I am not wrong, then I think you should put a mark on Blazor Server ONLY components.
It seems to me that, because of the dependency on EntityFramework, we can not use DataList on Blazor web assembly.
If I am wrong please let me know how?
If I am not wrong, then I think you should put a mark on Blazor Server ONLY components.
There is no such dependency - you can feed the component with any data.
Ok. I guess I just have to create my own IQueryable implementation.
You don't need IQueryable either. Any IEnumerable would suffice.
I am still trying to figure out how to bind all fetch behaviors with http calls. Please can you point me to an example of using DataList bindings on Blazor WebAssembly.
There are various examples with OData service in our demos like this one:
You can use the data received from the service to bind any component including DataList.
Perfect, thanks Bro!
Amazing library.