我是这个领域的新手。我目前正在使用带有MVC5的Report Viewer 11.0。
这是我的Employee.cs
课程:
namespace MyApp.Models
{
public class Employee
{
public int ID { get; set; }
public string Name { get; set; }
public int Age { get; set; }
}
}
我想在RDLC报告中将此类用作数据集。
该怎么办?