mg
Does anyone have advice on dealing with Blazor not being reactive out of the box?
assuming you're referring to the UI not updating when the state changes, the issues i've had with that were mostly resolved by ensuring all my UI event handlers were
EventCallback
s, which automatically re-render components after the callback finishes4 replies
Puzzled about Nullability in EFCore
I personally like to explicitly type my many to many relationships, so for me if
A
and B
have a many-to-many relationship through the join table AB
then I have
and then configure them with HasMany(a => a.Bs).WithMany(b => b.As).UsingEntity<AB>()
using the fluent api48 replies