In MSSQL you can convert a string into an integer like this:
CONVERT(INT, table.column)
Is there any C# expression that Linq to SQL would t
C# has Convert.ToInt32() which should do what you're looking for.