我有一个具有这种格式的模型
public class Report
{
public tblProcessorList Processor { get; set; }
public List<TransactionSummary> TranReport { get; set; }
}
public class TransactionSummary
{
public float TotalTransaction { get; set; }
public string Entity { get; set; }
public int Month { get; set; }
public int Year { get; set; }
public string TransactionType { get; set; }
}
我想在所有Processpr中使用RDLC创建这种格式,但我不知道如何开始
这甚至可以在reportviewer中使用吗?如果没有任何建议