-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data loading without needing a server API endpoint #46400
Comments
I am very interested in this. I have created a pattern that lets me do this constrained by the current APIs. I made a video about it here. https://www.youtube.com/watch?v=PsmXZnvWfIo |
yes the hole idea of blazor server is we can code the backend and frontend in one single project without need to create backend with webapi and then make request from blazor server to webapi , blazor server is solved that problem . but in .net 8 we have the auto render mode which is not actually make benefit for me because this mode require to use webapi . |
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process. |
@mkArtakMSFT This doesn't seem to have been touched in a while, is there any plans to look at this for the .NET 10 cycle? This feels like the last step to making Blazor Web Apps really nice from a DX perspective. Data access feels cumbersome to implement when using multiple render modes. |
A question In the new Blazor Web App template using .net 8, how do I make an HTTP request from a InteractiveWebAssembly mode component? discusses the options, so it would be good to have some guidance from MSFT other than Service abstractions for web API calls. Are any changes planned for the Blazor Web App template to showcase the best practice? @bpawluk Not sure if you're aware of this issue and have any comments to add based on your work with BlazorUtils.EasyApi. |
With .NET running on both ends of the wire in a Blazor app, we have the opportunity to dramatically simplify data access with a strongly typed programming model. This issue tracks exploring adding a streamlined programming model for loading and manipulating data from the client.
The text was updated successfully, but these errors were encountered: