How to return the ID field after the insert in Entity Framework ?
There are times when you want to retrieve the ID of the last inserted record when using Entity Framework .
For example ,
Employee emp = new Employee(); emp.ID = -1; emp.Name = "Senthil Kumar B"; emp.Expertise = "ASP.NET MVC" EmployeeContext context = new EmployeeContext(); context.AddObject(emp); context.SaveChanges();In the above example , if i need to retrieve the Read More →










