SQL Server 2008 中的地理空间类型是什么 ADO 类型?

发布于 2024-11-01 00:11:01 字数 1040 浏览 0 评论 0原文

我希望重构此方法(来自 Rob Conery 的 Massive.cs ):

public static void AddParam(this DbCommand cmd, object item) {
    var p = cmd.CreateParameter();
    p.ParameterName = string.Format("@{0}", cmd.Parameters.Count);
    if (item == null) {
        p.Value = DBNull.Value;
    } else {
        if (item.GetType() == typeof(Guid)) {
            p.Value = item.ToString();
            p.DbType = DbType.String;
            p.Size = 4000;
        } else if (item.GetType() == typeof(ExpandoObject)) {
            var d = (IDictionary<string, object>)item;
            p.Value = d.Values.FirstOrDefault();
        } else {
            p.Value = item;
        }
        //from DataChomp
        if (item.GetType() == typeof(string))
            p.Size = 4000;
    }
    cmd.Parameters.Add(p);
}

添加对地理类型的检查可能会解决我的 ExecuteNonQuery 和空间数据类型的问题,但我会检查什么类型?

if (item.GetType() == typeof(//WhatType?//)) {}

I am looking to refactor this method (from Massive.cs by Rob Conery):

public static void AddParam(this DbCommand cmd, object item) {
    var p = cmd.CreateParameter();
    p.ParameterName = string.Format("@{0}", cmd.Parameters.Count);
    if (item == null) {
        p.Value = DBNull.Value;
    } else {
        if (item.GetType() == typeof(Guid)) {
            p.Value = item.ToString();
            p.DbType = DbType.String;
            p.Size = 4000;
        } else if (item.GetType() == typeof(ExpandoObject)) {
            var d = (IDictionary<string, object>)item;
            p.Value = d.Values.FirstOrDefault();
        } else {
            p.Value = item;
        }
        //from DataChomp
        if (item.GetType() == typeof(string))
            p.Size = 4000;
    }
    cmd.Parameters.Add(p);
}

Likely adding a check for Geography type will fix my issue with ExecuteNonQuery and spatial data types, but what type would I check for?

if (item.GetType() == typeof(//WhatType?//)) {}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

调妓 2024-11-08 00:11:01

SqlGeography 就是您要寻找的,我相信。

SqlGeography is what you're looking for, I believe.

水染的天色ゝ 2024-11-08 00:11:01

这个怎么样?

if (item.GetType() == typeof(Microsoft.SqlServer.Types.SqlGeography)) 
{
     SqlParameter p = new SqlParameter();
     p.SqlDbType = System.Data.SqlDbType.Udt;
     p.UdtTypeName = "geography";
     p.Value = value;
}

How about this?

if (item.GetType() == typeof(Microsoft.SqlServer.Types.SqlGeography)) 
{
     SqlParameter p = new SqlParameter();
     p.SqlDbType = System.Data.SqlDbType.Udt;
     p.UdtTypeName = "geography";
     p.Value = value;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文