PdfRpt.DataSources.AnonymousTypeListDataSource.AnonymousTypeListDataSource C# (CSharp) Method

AnonymousTypeListDataSource() public method

Converts a list of anonymous type items to an IEnumerable of Pdf Cells Data.
public AnonymousTypeListDataSource ( IEnumerable listOfRows, int dumpLevel = 2 ) : System.Collections
listOfRows IEnumerable list of items
dumpLevel int how many levels should be searched
return System.Collections
        public AnonymousTypeListDataSource(IEnumerable listOfRows, int dumpLevel = 2)
        {
            _listOfRows = listOfRows;
            _dumpLevel = dumpLevel;
        }
AnonymousTypeListDataSource