Question

Having a difficult time trying to setup a WPF application that takes advantage of RIA Services and Entity Framework 5.0.

What makes this even more confusing, is how do I set all of this up asynchronously?

There is hardly any information out there. :(

Était-ce utile?

La solution

That's because there is no RIA Services implementation for WPF (ie. the proper .NET framework).

In the context of WPF, WCF Data Services is nearest of kin in terms of what it is used for, but it's not compatible.

Furthermore, RIA Services is async-only (but doesn't support the async/await paradigm natively), whereas Entity Framework is sync-only (async support comes in EF6 I believe).

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top