-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Reverse Engineer: Can we just scaffold string properties for xml
, hierarchyid
, geography
, geometry
, etc
#3076
Comments
@nteague22 It may require a few changes, but we should be able to set the parameter type using the SqlServerTypeMapper. |
Excellent, I really am impressed with the work you guys produce and the team as a whole! Even in beta, EF7 makes my life easier on running ETL and other data migratory operations |
How is issue going? I still that the https://github.com/aspnet/EntityFramework/blob/dev/src/EntityFramework.MicrosoftSqlServer/Storage/Internal/SqlServerTypeMapper.cs is unchanged. |
@wangkanai Have you tried manually adding the properties to your model? |
@bricelam Do you mean like mapping a object property System.Data.Spatial to Spatial Data Types in demo application? No 😄, don't know where to start, still studying your codebase.
*Did some testing, and it go very deep into the core * 😅 skiming guess, its going to take a few 100 manhours base on my skills |
Fail to try scaffolding a xml sql datatype and fail to manually add the property in my model. Dont know how to do that manually. |
Some of these datatypes may just work with an implicit conversion to/from string. We need to investigate which ones work (or can work with minimal changes) and then update reverse engineer to scaffold a string property for them.
The text was updated successfully, but these errors were encountered: