Hi,
Undoubtedly, many developers are waiting for new features within "custom O-C mapping".
This work would have many different "user stories", but we could try to start with some simple scenarios to go further extending the work. I think I could help with any of these scenarios, for example with "backing fields mapping" with the
idea
of having some things like:
Materialize in backing fields ( properties without set )
modelBuilder.Entity<Customers>()
.Property(c=>c.FirstName)
.ToCamelCaseField(); // or ToUndescoreCamelCaseField()
Materialize in fields ( properties in EDM but not in object spaces )
modelBuilder.Entity<Customers>()
.Property("FirstName")
.ToUndescoreCamelCaseField(); // or ToCamelCaseField()
Would the team interested in any contribution in this regards???
Thanks in advance
Unai Zorrilla