I have a rad grid which i am populating on from the context ie .
BindingSource bs = new BindingSource();
bs.DataSource = pamsContext.GetAppraisal(false).ToList();
grvappraisal.DataSource = bs;
I have a list which contains apprisal id record id , next date , apprisaed by
on the right on the same form I have notes and a couple of date drop down what I am wanting to no is using the entity frame work how do i store the values on the right hand side so I can later save them to the entity.
any help is appreciated
BindingSource bs = new BindingSource();
bs.DataSource = pamsContext.GetAppraisal(false).ToList();
grvappraisal.DataSource = bs;
I have a list which contains apprisal id record id , next date , apprisaed by
on the right on the same form I have notes and a couple of date drop down what I am wanting to no is using the entity frame work how do i store the values on the right hand side so I can later save them to the entity.
any help is appreciated