Open
Description
This will allow to replace
modelBuilder.Entity<MyEntity>().ComplexProperty(e => e.Details).Property(d => d.Description);
with
modelBuilder.Entity<MyEntity>().Property(e => e.Details.Description);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment