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
{
dbentities.employee.remove(v);
}
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
Post a Comment