I just want the datagriview to show 2 columns. Let's say for examply I have a User Collection.
For this example I do.
UserCollection uc= new UserCollection();
uc.GetMulti(null)
someGridView.DataSource = uc;
From that I want to be able to limit the grid view to two columns only. I am able to add two columns in design time to the grid but when I run it, the first two columns that I designed appear perfectly, but the REST of the columns from the collection also appear.
You mentioned excluding/including fields feature and I'm not sure how to use it.
For the collection itself I only see the "FetchExcludedFields method". Is that what I have to use?
Any simple example would help.
Thank you,
Miguel Martorell