Bind data with list,string fields to the grid view in winforms c# through interface -


i want bind data grid. class follows.

     public class dependency      {          public string issueid { get; set; }          public string jirastatus { get; set; }          public int dependencyfound { get; set; }          public list<string> depends { get; set; }          public list<string> linked_issues { get; set; }        } 

i trying bind data through wizard or ui. enter image description here

here list type fields not appearing. through ui not possible? dont have idea how bind through code. can once give me link or solution this. thanks

for parent-child relation (collection associations) populate 1 gridview parent level data. when user clicks on 1 of record fetch , show corresponding child data in separate grid(s), when list type. otherwise may need consider using thir-party grid controls support nested grid display.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -