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. :(

有帮助吗?

解决方案

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).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top