c# 4.0 - Visual Studio Reports does not update dataset based on object binding -


i using visual studio reporting services create report has object binding (and not sql database). have created following class contains objects need imported:

public class paper   {   int m_grade;  public paper()         {           m_grade = 1000;         }  public int grade         {             { return m_grade; }         } } 

this works fine when bind report class. however, if add more methods class, such as:

 public paper()      {      m_grade = 1000;      int m_mydummy1 = 12;     } 

and add property

    public int mydummy     {     {return m_dummy1;}     } 

it not updated in dataset has been automatically generated report wizard due unable add more data/methods reporting table embedded in report. same happens if add class within parent class.

is there way around preferably without having write code?

thank you!

fixed. problem visual studio not being able update internally generated datasets tables/charts/ etc. update them, go report. when report active, "report" menu show in menu bar. go view->report data. opens side pane datasets being used internally. right-click on dataset wish update , click on refresh. pane can used add new datasets organize data charts, tables , etc.


Comments

Popular posts from this blog

php - Dynamic url re-writing using htaccess -

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -