El Grande Padre
❔ Help Using Supabase
I'm not 100% sure how supabase works, but if its a postrgres compatible db then you should be able to use efcore with identity and point it at supabase. With sufficient permissions it should be able to do schema migrations too.
8 replies
❔ Help Using Supabase
If you're new to auth and databases in general, I'd probably stick with letting efcore or something similar manage the db schema rather than trying to use a supabase template. https://learn.microsoft.com/en-us/aspnet/core/security/authentication/identity?view=aspnetcore-7.0&tabs=visual-studio (This gets better in a few months with dotnet 8)
As for the other stuff, it seems fine for what you're doing. If you wanted it could help to look into relational database normalized forms and the trade-offs between them.
8 replies
✅ Not able to locate web api controllers in a class library
Solved. I think it was
<FrameworkReference Include="Microsoft.AspNetCore.App" />
but the secondary issue of me not including the rest port in the appsettings.json didn't show it working once that was fixed. Guess thats what I get for laziness and not copying over the option configs. ty @TeBeConsulting81 replies