NPehrsson
NPehrsson

Reputation: 1548

Sending Linq expressions over WCF

I want to be able to send linq queries over wcf just like in ria services and wcf data services, but I do not want to use either of them. Are there any codeplex project or similar which could help me with this problem. Or are there easey to extract that code from ria with reflector?

Upvotes: 1

Views: 1539

Answers (1)

Gabe
Gabe

Reputation: 86688

It sounds like you just need a way to [de]serialize the expression trees. I would look at either http://code.msdn.microsoft.com/exprserialization or MetaLinq: http://metalinq.codeplex.com/ to help with this.

Upvotes: 2

Related Questions