0
我在VS2013中使用Devexpress。我想知道如何在Devexpress報告(XtraReport)中使用我的實體框架類作爲數據源。例如我在我的DBcontext中有一個DBset「Employs」我如何在Xtrareport中使用它數據源,Devexpress報告和DBContext數據源
謝謝。
我在VS2013中使用Devexpress。我想知道如何在Devexpress報告(XtraReport)中使用我的實體框架類作爲數據源。例如我在我的DBcontext中有一個DBset「Employs」我如何在Xtrareport中使用它數據源,Devexpress報告和DBContext數據源
謝謝。
如果轉換查詢到List
您可以輕鬆地綁定到EF查詢結果報告,然後報告綁定到這個列表:
report.DataSource = (from employee in DbContext.Employees
select employee).ToList();
我相信下面的知識庫文章會有所幫助:
How to create a master-detail report bound to an ORM (Entity Framework) model in MVC applications
是的,它是令人驚訝的容易。只需在Xtrareport上放置Bindingsource控件,然後初始化我的編碼報告。工作就像一個魅力... Thnaks很多 –