0
我創建了一個Silverlight應用程序,在這裏我使用WCF RIA服務。 我的MainPage.xaml.cs無法從域服務獲取數據。在域名服務的方法是數據沒有從WCF RIA加載到SIlverlight MainPage.xaml.cs
public IQueryable<Measurement> GetMeasurements()
{
return this.ObjectContext.Measurements;
}
在MainPage.xaml.cs中的代碼如下
EntityQuery<Measurement> query = from p in service.GetMeasurementsQuery() select p;
LoadOperation<Measurement> measurement = service.Load(query);
請讓我知道了一些意見和建議。
如果您描述了_expect_和_actually_正在發生什麼,您將得到更好的幫助。正如你所描述的,我沒有看到你的代碼有問題。 –