Я хочу обновить одну запись в базе данных, используя структуру сущностей. при обновлении этой записи все даты для этого сотрудника устанавливаются только для кода сотрудника и IsActive .. как обновление isAcive только
это мой код
private void btn_Save_Resignation_Click(object sender, EventArgs e)
{
try
{
var IsActive = new database.tblEmployeeData
{
EmployeeCode = Convert.ToInt32(txtEmpCode.Text),
IsActive = cbxResignationEmp.Checked = true,
};
db.tblEmployeeDatas.AddOrUpdate(IsActive);
db.SaveChanges();
MessageBox.Show("تم إقالة الموظف بنجاح", "Sigma Software", MessageBoxButtons.OK, MessageBoxIcon.Information);
ClearResignation();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Sigma Software", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
......... ........ Это моя модель класса
public partial class tblEmployeeData
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public tblEmployeeData()
{
this.tblBlackListForEmps = new HashSet<tblBlackListForEmp>();
this.tblContractForEmploees = new HashSet<tblContractForEmploee>();
this.tblCustodyForEmps = new HashSet<tblCustodyForEmp>();
this.tblDocumentEmployeeWithStates = new HashSet<tblDocumentEmployeeWithState>();
this.tblOtherDataForEmps = new HashSet<tblOtherDataForEmp>();
this.tblPenaltyForEmployees = new HashSet<tblPenaltyForEmployee>();
}
public int EmployeeCode { get; set; }
public string EmployeeName { get; set; }
public Nullable<byte> GenderCode { get; set; }
public Nullable<byte> PranchCode { get; set; }
public Nullable<byte> RelationShipCode { get; set; }
public Nullable<byte> AdministrationCode { get; set; }
public Nullable<byte> DepartmentCode { get; set; }
public Nullable<short> JopCode { get; set; }
public Nullable<byte> JopLevelCode { get; set; }
public Nullable<byte> ConCustmerCode { get; set; }
public Nullable<byte> NationalityCode { get; set; }
public Nullable<byte> TypeOfWorkersCode { get; set; }
public Nullable<bool> IsActive { get; set; }