| | |
| | | EmployeeInfo entityEmployeeInfo, |
| | | List<EmployeeItem> entityEmployeeItems) |
| | | { |
| | | db.Deleteable<EmployeeInfo>().Where( |
| | | s => s.Id == entityEmployeeInfo.Id).ExecuteCommand(); |
| | | db.Deleteable<EmployeeInfo>().Where(s => s.Id == entityEmployeeInfo.Id) |
| | | .ExecuteCommand(); |
| | | |
| | | db.Deleteable<EmployeeItem>() |
| | | .Where(a => a.Eid == entityEmployeeInfo.Id).ExecuteCommand(); |
| | |
| | | EmployeeInfo entityEmployeeInfo, |
| | | List<EmployeeItem> entityEmployeeItems) |
| | | { |
| | | var command = db.Deleteable<EmployeeInfo>().Where( |
| | | s => s.Id == entityEmployeeInfo.Id).ExecuteCommand(); |
| | | var command = db.Deleteable<EmployeeInfo>() |
| | | .Where(s => s.Id == entityEmployeeInfo.Id).ExecuteCommand(); |
| | | |
| | | var executeCommand = db.Deleteable<EmployeeItem>() |
| | | .Where(a => a.Eid == entityEmployeeInfo.Id).ExecuteCommand(); |