This will allow to replace ```C# modelBuilder.Entity<MyEntity>().ComplexProperty(e => e.Details).Property(d => d.Description); ``` with ```C# modelBuilder.Entity<MyEntity>().Property(e => e.Details.Description); ```