Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following simple Linq query:

(from container in Container
join containerType in ContainerType on container.ContainerType equals containerType
where containerType.ContainerTypeID == 2
select container).Max (row => row.SerialNumber)

As is, this query works fine. The problem is that SerialNumber, in the DB, is an nvarchar type. When ContainerTypeID = 2, the values in this column will always be integers, but not zero-filled. Therefore, doing a Max, without casting all the serial numbers to integers, won't work (e.g., Max would select '2' over '10'). So, my question is, how can I cast all the values of row.SerialNumber to an integer so Max can find the greatest serial number?

share|improve this question
Can't you place an int conversion within your call to Max...e.g., Max(row => Convert.ToInt32(row.SerialNumber))? – David Andres Jun 30 '10 at 12:08

1 Answer

up vote 0 down vote accepted

I tried to cast this way and it worked.

(from container in Container
join containerType in ContainerType on container.ContainerType equals containerType
where containerType.ContainerTypeID == 2
select container).Max (row => Convert.ToInt32(row.SerialNumber))

But if the value in row.SerialNumber is greater than int or an invalid value cause an exception.

share|improve this answer
Thanks, that worked! I was afraid I couldn't cast like that because I tried using Parse and got an error. – Randy Minder Jun 30 '10 at 12:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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