我有一个绑定到以下课程的 rdlc 报告:
public class Product
{
DataContext context;
public Product()
{
context = new DataContext();
}
public List<Product> GetBoughtItemsForUser(string userName)
{
//linq query to collect data
return query.ToList();
}
public string Name {get;set;}
public int Quantity {get;set;}
}
在我的 rdlc 中,我将报告数据集设置为 GetBoughtItemsForUser。现在我想传递实际上是 Page.User.Identity.Name 的 userName 值,那么我应该怎么做呢?