vote up 2 vote down star
1

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#.

flag

2 Answers

vote up 2 vote down check

Have a look at this question/answer. It shows how to do string comparisons on Linq.

http://stackoverflow.com/questions/578231/issues-doing-a-string-comparison-in-linq

link|flag
guess it's all about the right search terms. brain not working this monday. :) – JD Conley Jun 22 at 16:06
Agree completely, that's why I posted the link as an answer rather than voting to close as a duplicate. – Robin Day Jun 22 at 16:07
vote up 2 vote down

You want String.CompareTo here

var query = from p in db.People
            where p.FirstName.CompareTo("JD") > 0
            select p;
link|flag

Your Answer

Get an OpenID
or

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