vote up 0 vote down star
1

I don't want to use array sorting on the web server it should be done on SQL server.

Microsoft does not support query(in EF) like this:

SELECT * FROM [Table_1]
ORDER BY [Table_1].field
COLLATE SQL_SwedishStd_Pref_Cp1_CI_AS

Any ideas? Thank you in advice...

flag

This looks like a valid SQL statement to me. What happens when you run it? – Karl Mar 22 at 20:45
I want to make this SQL query when I'm getting Entity Set for example – omoto Mar 23 at 10:48

1 Answer

vote up 0 vote down check

The Entity Framework does support a COLLATE clause in an ORDER BY in Entity SQL. I'm not aware of any way to do it with LINQ to Entities. Indeed, I don't know how to do it with any LINQ provider. I'm not sure it's possible.

link|flag
Very very bad. I found hack solution, but I still hope that Microsoft will support this in the feature. – omoto Mar 24 at 15:39
Entity SQL isn't a kludgy solution. It is supported and works fine. But, yes, it would be nice to have similar support in LINQ. – Craig Stuntz Mar 24 at 15:42

Your Answer

Get an OpenID
or

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