Igorek
Igorek

Reputation: 15850

entity framework over wcf

its there a way to expose a full ef model over wcf without custom coding every individual method individually? I know I can expose odata end point, but that interface is rather limited.

I want to abstract my data context away from my repositories so that they won't care if they are talking to objectcontext or some wcf endpoint.

I have firewall in between my database and some of my clients who I trust to connect securely

Upvotes: 0

Views: 269

Answers (1)

Ladislav Mrnka
Ladislav Mrnka

Reputation: 364279

If you don't like OData endpoint (WCF Data Services) and you expect that your program will work both with local context (direct EF access) and remote context (WCF) you are going to code it whole yourselves and it will be a lot of work.

Upvotes: 4

Related Questions