Adding controllers for web client #379
-
Hi, I already have a .net 8 project with DatasyncControllers that I use for a .net MAUI mobile app. Is it safe/recommended to use the same project with the AddControllers as a web api for my Blazor client. It will not need datasync just the standard web controllers with authorization and the BlazorFrameworkFiles. |
Beta Was this translation helpful? Give feedback.
Answered by
adrianhall
Jun 23, 2025
Replies: 1 comment
-
That should be fine, as long as the endpoints are different. I do the same thing (in fact, I mix-and-match FastEndpoints, controllers, and minimal APIs in one project just because I can). |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
budaboy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That should be fine, as long as the endpoints are different. I do the same thing (in fact, I mix-and-match FastEndpoints, controllers, and minimal APIs in one project just because I can).