Hi friends i have an edmx file where there is entity called TransferDetails which has the Following fields in it: Customer Name,CustomerID,CustomerSales,UserLogin
I am using a rad grid that shows the entiy data via ana enity data source : Customer_EDS.
So the fields Customer Name,CustomerID,CustomerSales are inserted ,updated via the radgrid and Customer_EDS. BUt the userlogin field is the field which conatins the user who makes the data record changes. This is my code i am trying to the update the UserLogin
field but does not seem to work..Please some one guide me on this as to what i am missing here
protected void Customer_EDS_Updating(object sender, EntityDataSourceChangingEventArgs e)
{
lblUser_Login.Text = User.Identity.Name;
using (FieldEquipmentEntities dataEntity = new FieldEquipmentEntities())
{
TransferDetail tfdetail = new TransferDetail( ...
Go to the complete details ...