-1
我正在開發WPF應用程序。我的應用程序是由三層組成:嘗試使用Web服務查詢數據庫時出錯
- Grades.Model:包含EDMX
- Grades.WPF:包含了表示層
- Grade.WebService:包含用於實例化的
DbContext
Web服務
該代碼用於實例化DbContext
是:
DBContext = new GradesEntities(new Uri("http://localhost:1103/Services/GradesWebDataService.svc", UriKind.Absolute));
當我從WPF層調用他的Web服務來實現DbContext
時,它工作正常。但是,當我使用這個DbContext
查詢數據庫,我得到了自己的錯誤:
System.Data.Services.Client.DataServiceQueryException
查詢是:
(from s in DBContext.Subjects select s).OrderBy(s => s.Name).ToList();
任何想法關於這個問題?謝謝你的幫助。
你可以添加'Subject'和DBContext嗎? –
wPF應用程序,hree laer,insanciate ...你是否正在考慮問這個問題認真或什麼? –
什麼是內部異常? –