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?

link|improve this question

Please don't build your own sql. Either go LINQ (which I am NOT a fan of) or use another mechanism. Not only is it difficult to debug, difficult to maintain without redeploying the app for minor query changes, but invariably there are sql injection issues which need to be dealt with. – Chris Lively Mar 5 '10 at 16:09
Not an option. :| Believe me I would be using Linq in a heart beat. – Adam Driscoll Mar 5 '10 at 16:10
feedback

3 Answers

up vote 4 down vote accepted

How about:

if(value .GetType().IsGenericType && value is IEnumerable)
link|improve this answer
feedback

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

link|improve this answer
He beat you by a minute :) – Adam Driscoll Mar 5 '10 at 16:13
feedback

What about :

value is IEnumerable<Guid>

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.