检查对象是否是泛型集合

发布于 2024-08-24 13:37:15 字数 380 浏览 4 评论 0原文

我们正在动态构建一些 SQL 语句,并且正在利用 IN 运算符。如果我们的值是值的集合,例如:

List<Guid> guids = new List<Guid>()

我希望能够向我的子句构建器提供“guid”,让它验证类型,如果它是可枚举的,则创建一个子句,如下所示:

IN ( {Guid1}, {Guid2}, {Guid3} )

检查该值是否为 IEnumerable,如下所示:

if (value is IEnumerable)

当传入字符串时会掉落(这种情况经常发生:))。验证此类情况的最佳方法是什么?

We are dynamically building some SQL statements and we are utilizing the IN operator. If our value is a collection of values such that:

List<Guid> guids = new List<Guid>()

I want to be able to provider 'guids' to my clause builder, have it verify the type and if it is enumerable create a clause like:

IN ( {Guid1}, {Guid2}, {Guid3} )

Checking that the value is IEnumerable like this:

if (value is IEnumerable)

falls down when a string is passed in (which happens pretty regularly :) ). What is the best way to validate this type of condition?

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

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

发布评论

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

评论(3

勿挽旧人 2024-08-31 13:37:16

怎么样:

if(value .GetType().IsGenericType && value is IEnumerable)

How about:

if(value .GetType().IsGenericType && value is IEnumerable)
眸中客 2024-08-31 13:37:16

您可以尝试将 value.GetType().IsGenericType 与您对 IEnumerable 的检查结合起来。

You could try value.GetType().IsGenericType in combination with your check for IEnumerable.

酒解孤独 2024-08-31 13:37:16

怎么样:

value is IEnumerable<Guid>

如果您期望 Guid 实例,那就更好了,不是吗?

What about :

value is IEnumerable<Guid>

It's better if you expect Guid instances, isn't it ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文