如何将 PathGeometry 存储在(SQL)数据库中?
我有包含 PathGeometries 的 .net 类,并且需要将它们存储在 SQL Server 数据库中。
我将使用什么列类型以及如何将 PathGeometry 放入列并返回?
I've got .net classes containing PathGeometries and need to store these in a SQL Server database.
What columntype would I use and how do I get the PathGeometry into the column and back?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我承认,我对 PathGeometry 知之甚少,但是 SQL Server 2008 有一个 GEOMETRY 空间类型,可能对您有用。以下是 MSDN 上一些详细信息的链接 (http://msdn.microsoft.com /en-us/library/cc280487.aspx)。这应该能够让您将数据保存到数据库中。但是,由于我对 Geometry 类缺乏了解,因此无法帮助您将数据库中的数据检索到 Geometry 对象中。
希望能有所帮助。
I admit, I know very little about PathGeometry, but SQL Server 2008 has a GEOMETRY spatial type that may be of use to you. Here is a link to some details on MSDN (http://msdn.microsoft.com/en-us/library/cc280487.aspx). That should be able to get you to a point where you can save the data to the database. However, my lack of knowledge about the Geometry class prevents me from being able to help you retrieve the data from the database into a Geometry object.
Hope that helps out a little.