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

RichTextBox Field in power apps as Sharepoint online defalut forms.

Code snipets in vs