vote up 2 vote down star

How to implement method for IQuariable like below:

var trash = (from a in ContextBase.db.Users
                orderby a.FirstName
                select a).ToCollatedList();

In a result I want to see

SELECT * from [User] 
ORDER BY FirstName
COLLATE SQL_SwedishStd_Pref_Cp1_CI_AS ASC

Thanks.

flag

2 Answers

vote up 1 vote down check

You can't extend the Linq-to-Sql implementation to perform new functionality on the server.

The best you can do is a client-side implementation of collation.

link|flag
vote up 0 vote down

I would expose a view for the different collations and allow the developers to run LINQ to SQL queries against the views.

link|flag

Your Answer

Get an OpenID
or

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