I have a varialbe name age and that's type is int? My linq to sql query is:

from t in db.Profiles where t.age == age select t

having a comparison between int and int? at where clause. how the query processor of linq to sql will process in this case?

link|improve this question

71% accept rate
feedback

1 Answer

If age is a type int? then I believe your query should read as follows:


from t in db.Profiles where t.age == age.Value select t

link|improve this answer
But if age is null then the NullPointException will be throwed – Linh Dec 23 '09 at 1:08
from t in db.Profiles where t.age == (age == null) ? null : age.Value select t – Randy Minder Dec 23 '09 at 2:49
feedback

Your Answer

 
or
required, but never shown

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