Let's say I have a MS-SQL 2005 table named "People" with the following rows:
|FirstName|LastName|
|JD |Conley |
|Joe |Schmo |
|Mary |Jane |
I want to execute a SQL statement like:
select * from People where FirstName > 'JD'
The problem I'm having is I can't think of a way to get LINQ to SQL to generate this SQL statement. Obviously I can't use ">" and "<" operators on strings in C#.