Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
135
Entity Framework Data Model in WinForms Grid
posted

Hello,

We used Entity Framework Data Model as datasourse for grid .  For example : we have

                   public int ID { get; set; }        

                   public string Name { get; set; }        

                   public string ColumnName { get; set; }

and navigation property    

                   public virtual ICollection<EF> FieldCommons { get; set; }

Columns FieldCommons and ID  are selected from other table and we don't need to show and to bind this columns in grid.

How can we bind model to grit without binding this columns?

 

Thanks .

Parents Reply Children