c# - Using a List within a dataset as tablix properties -


i have large output report create 7 - 10 tables plus ton of individual cells populate.

is possible use list inside of dataset tablix properties/dataset? or need create new dataset each table?

as example of mean:

public class librarymodel {  ....  public list<bookmodel> books { get; set; }  public list<areamodel> area { get; set; }  .... }  public class bookmodel {  public string author { get; set; }  public string isbn { get; set; }  public double price { get; set; }  public string title { get; set; } }  public class areamodel {  public string name { get; set; }  public string genre { get; set; }  public bool hasadultcontent { get; set; } } 

in case able use librarymodel dataset in report , use bookmodel 1 table , areamodel table? , if so, how able that?

solution found can set model in manner each list item not show item field. each list item has imported new dataset.

in reporting service show librarymodel (books) rather using bookmodel dataset.


Comments

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -