Visual Studio 2010 数据库项目无法识别 SQL 2008 地理数据类型
我在 Visual Studio 2010 中创建了一个新的 SQL 2008 数据库项目,并用本地 SQL Express 数据库的内容填充它。当我尝试构建数据库项目时,出现此错误: SQL03006:列:[dbo]。[table1]。[geog]对Sql类型[dbo]。[geography]有一个未解析的引用
我已经做了一些搜索,它可能缺少对Microsoft.SqlTypes.dbschema的引用,但是我在任何地方都找不到: http://www.incyclesoftware.com/blog/post/2009/07/07/Resolve-references-Error-TSD03006-IN-VSTS-DB-GDR.aspx
是数据类型确实不支持开箱即用,还是我遗漏了一些东西?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
找到了;在表或存储过程中,数据类型需要以 [sys] 为前缀,如下所示:
Found it; in the table or stored procedure the datatype needs to be prefixed with [sys] like this:
在将 Sql 类型几何引入数据库项目后,我遇到了同样的问题(在我的例子中,当我与 SQL 2008 架构进行比较时,数据库项目版本设置为“2005”)
我通过更改数据库项目版本(属性)解决了该问题-> 项目设置 -> 项目版本)到 2008。
之后,当您右键单击“引用”(对于数据库项目)或项目本身时,您应该会看到一个选项“添加 SQL Server 2008 CLR 类型”。这将添加您需要的参考并解决问题。
以下是为我添加在 proj XML 中生成的引用的内容:
I have had the same issue after introducing Sql Type geometry to a DB Project (DB project version in my case was set to "2005" while I was comparing to a SQL 2008 schema)
I resolved the issue by changing the Database Project Version (Properties -> Project Settings -> Project Version) to 2008.
After that when you right-click on References (for the Database Project) or the project itself, you should see an option "Add SQL Server 2008 CLR Types". This will add the reference that you need and will resolve the issue.
Here is what adding the reference generated in the proj XML for me:
我从未获得“添加 SQL Server 2008 CLR 类型”选项,但我能够通过编辑 .dbproj 文件并将 LoadSqlClrTypes 值更改为 True 来解决此问题:
I never got the "Add SQL Server 2008 CLR Types" option, but I was able to fix this problem by editing my .dbproj file and changing the LoadSqlClrTypes value to True: