Delete a specific row using LINQ

Here we are having a table in the Database name DBentities .
The name of the table is Employee.
here we are deleting a row where emplyee_id is emp_id

var v = from row in dbentities.employee 
where employee_id==emp_id select row


if(v != null)
{
dbentities.employee.remove(v);
}



Comments

Popular posts from this blog

Difference between Less and CSS ?

What is system setting in sharePoint2013? Other options in system setting in SharePoint2013?