-
Notifications
You must be signed in to change notification settings - Fork 548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complex Type Serialization via FluentAPI #72
Comments
@ma3yta Just to confirm, are you asking for the ability to register in the EF model the 2-way conversions from a string stored in a database column to a structured object instance? If that is what your question is about, the answer is that we are not planning to do it for EF6, and maybe we will do it in the future for EF Core. The following EF Core issues contain relevant discussions: |
@divega yes. thanks |
@divega Do you have plans to work on EF7 and implement those features http://enterprisecraftsmanship.com/2014/11/29/entity-framework-6-7-vs-nhibernate-4-ddd-perspective/ ? |
@ma3yta I only skimed over that article (which seems very good) and here is a summary:
|
Very bad. We choose NHibernate for our project. But migrations is very good. |
Is the way to define serialization/deserialization in OnModelCreating and leave only POCO class with one property
public MyComplexType MyComplexType { get; set; }
without attributes and additional property?Thanks
The text was updated successfully, but these errors were encountered: