-
-
Notifications
You must be signed in to change notification settings - Fork 29
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
Nested complex type case not handled properly #60
Comments
I noticed these comment lines in the file MetaDatahandler.cs: // Note that complex types can't be nested (ref http://stackoverflow.com/a/20332503/10245 ) So this is by design, but there's no such limitation at least not in EF version 6.1.3, nested complex types are valid and works like expected. The limitation is with relational properties within complex types. |
Would you be able to write a unit test & fix? Then do a PR? |
I'll try to do a fix for it myself and do a PR. Thanks for everything you've put into it already. |
Cool. You're welcome! |
In a case where a complex type is a subproperty within a complex type, then running EnumToLookup.GenerateMigrationSql(...) seems to ignore the enum property.
The following code describes the case
The text was updated successfully, but these errors were encountered: