views:

162

answers:

1

I want to cast Nullable Tinyint column to int value in Linq to SQL ?

+1  A: 

Well By default, it is generated as Byte and not Integer, but you can go to code view and change the type, though that is not recommended, as whenever you drop something again from your database, the change you made will go away.

So I think working with byte is fine. isn't it?

lakhlaniprashant.blogspot.com
Thank you bro ;)
Wahid Bitar