将 ExecuteScalar 结果转换为 GUID 而不使用字符串?
如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您的 sql 语句无法返回 DBNull.Value,那么是的,您可以:
编辑:现在我们知道您需要处理空值....:-)
我可以想到两种处理空值的方法 - 使用可为空的 Guid 并设置将其设置为 null,或者使用常规 Guid,如果 SQL 语句返回 null,则将其设置为 Guid.Empty。
考虑某种形式的辅助函数或扩展方法来检查 DBNull.Value。
或
然后调用
注意 - 如果您的 SQL 命令返回 UniqueIdentifier 以外的数据类型,这将会阻塞。
Assuming that your sql statement cannot return DBNull.Value, then yes you can:
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.
or
Then call
Note - this will choke if your SQL command returns a datatype other than UniqueIdentifier.
如果从命令返回的对象是 UniqueIdenitifier,则可以。
If the object being returned from the command is a UniqueIdenitifier, then yes.