Вопрос

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