In my mvc asp.net application, I am getting an error in edit function : in given code
public ActionResult Edit(int id) { var res = (from r in objeEnti
After spending hours, I found that I missed 's' letter in table name
's'
It was [Table("Employee")] instead of [Table("Employees")]
[Table("Employee")]
[Table("Employees")]