lime_soft
Entity Framework Core updating tables in navigation fields
so in efcore lets say i have an entity Foo and Baz:
my question is if i try to update Foo how can i efcore to only update the FooId property in Baz
if i pass
Foo { Baz { Id: 1, FooId: 2 } }
, i don't want Baz.SomeOtherProp
to be null i just want it to stay the same4 replies