将 ExecuteScalar 结果转换为 GUID 而不使用字符串?

发布于 2024-10-11 09:52:05 字数 219 浏览 10 评论 0原文

如何将 ExecuteScalar 命令的结果转换为 GUID 结构,而不首先使用 .ToString() 传递给 GUID 的构造函数?

这样做的原因是性能,而不是在内存中创建数千个不必要的字符串对象。

可以使用阅读器和 GetGUID 方法,但我看不到任何关于如何在使用标量值时实现相同目的的参考。

更新:我还需要处理 DBNull 值

How can I cast the result of an ExecuteScalar command to a GUID structure without first using .ToString() to pass to the constructor of the GUID?

The reason for doing this is performance and not creating thousands of unnecessary string objects in memory.

It is possible using a reader and the GetGUID Method but I can not see any references to how to achieve the same when using a scalar value.

Update: I also need to handle DBNull Values

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

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

发布评论

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

评论(3

笑着哭最痛 2024-10-18 09:52:05

假设您的 sql 语句无法返回 DBNull.Value,那么是的,您可以:

Guid myResult = (Guid) cmd.ExecuteScalar();

编辑:现在我们知道您需要处理空值....:-)

我可以想到两种处理空值的方法 - 使用可为空的 Guid 并设置将其设置为 null,或者使用常规 Guid,如果 SQL 语句返回 null,则将其设置为 Guid.Empty。

考虑某种形式的辅助函数或扩展方法来检查 DBNull.Value。

    static Guid? GetGuidFromDb(object dbValue)
    {
        if (dbValue == null || DBNull.Value.Equals(dbValue))
        {
            return null;
        }
        else
        {
            return (Guid) dbValue;
        }
    }

    static Guid GetGuidFromDb(object dbValue)
    {
        if (dbValue == null || DBNull.Value.Equals(dbValue))
        {
            return Guid.Empty;
        }
        else
        {
            return (Guid) dbValue;
        }

然后调用

Guid? myResult = GetGuidFromDb(cmd.ExecuteScalar());

注意 - 如果您的 SQL 命令返回 UniqueIdentifier 以外的数据类型,这将会阻塞。

Assuming that your sql statement cannot return DBNull.Value, then yes you can:

Guid myResult = (Guid) cmd.ExecuteScalar();

EDIT: Now that we know you need to handle nulls.... :-)

I can think of two ways to handle nulls - use a nullable Guid and set it to null, or use a regular Guid and have it set to Guid.Empty if your SQL statement returns null.

Consider some form of helper function or extension method which checks for DBNull.Value.

    static Guid? GetGuidFromDb(object dbValue)
    {
        if (dbValue == null || DBNull.Value.Equals(dbValue))
        {
            return null;
        }
        else
        {
            return (Guid) dbValue;
        }
    }

or

    static Guid GetGuidFromDb(object dbValue)
    {
        if (dbValue == null || DBNull.Value.Equals(dbValue))
        {
            return Guid.Empty;
        }
        else
        {
            return (Guid) dbValue;
        }

Then call

Guid? myResult = GetGuidFromDb(cmd.ExecuteScalar());

Note - this will choke if your SQL command returns a datatype other than UniqueIdentifier.

萧瑟寒风 2024-10-18 09:52:05

如果从命令返回的对象是 UniqueIdenitifier,则可以。

If the object being returned from the command is a UniqueIdenitifier, then yes.

黑色毁心梦 2024-10-18 09:52:05
    Guid myResult = cmd.ExecuteScalar() as Guid? ?? Guid.Empty;
    Guid myResult = cmd.ExecuteScalar() as Guid? ?? Guid.Empty;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文