Reputation: 1548
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
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