gpt4 book ai didi

entity-framework - 如何将 Crystal 报表绑定(bind)到 Entity Framework ?

转载 作者:行者123 更新时间:2023-12-04 08:31:43 24 4
gpt4 key购买 nike

如何将 Crystal Reports 绑定(bind)到 Entity Framework 实体?

我确实没有找到解决方法。

(而且我还没有足够的分数来对现有问题进行投票)

最佳答案

至于我,我阅读了下面的链接

http://aspalliance.com/2049_Use_LINQ_to_Retrieve_Data_for_Your_Crystal_Reports.2

它告诉我如何链接 EntityFramework 和 Crystal Report。

至于后面的代码......

 protected void Page_Load(object sender, EventArgs e)
{
Report.CrystalReport1 _Rpt = new Report.CrystalReport1();

List<Test> list_Test = new List<Test>();
using (tempdbEntities _tempdbEntities = new tempdbEntities()) {
list_Test = _tempdbEntities.Tests.ToList();
}

_Rpt.SetDataSource(list_Test);
CrystalReportViewer1.ReportSource = _Rpt;
CrystalReportViewer1.RefreshReport();

}

关于entity-framework - 如何将 Crystal 报表绑定(bind)到 Entity Framework ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/824591/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com