In SQL you can selecta constant value:
Select "Constant Text", Column1, Column2 From TableX
and each row returned from TableX starts with a column containing the text "Constant Text".
Any ideas on how I can do this in LINQ to SQL?
If I do the above I get the error message "Range variable name can be inferred only from a simple or qualified name with no arguments."