Till now I was deleting a single row by writing:
Role role = new Role();
role = context.Roles.SingleOfDefault(p => p.Rolename == rolename);
context.Roles.DeleteOnSubmit(role);
context.SubmitChanges();
Now I need to delete from Role Permission table all the Permission rules that he had, so I want with the specific RoleId to delete multiple rows from RolePermission table (RolePermission table includes RoleId column). Is there any similar way to do this?