我的数据库中有一个简单的一对多关系。以下是对应的类:
class Department
{
int deptId;
int count; //This corresponds to the total number of Employees in a department
List<Employee> employees; //An employee belongs to only one department
}
class Employee
{
int employeeId;
Department dept;
}
为了保持count
更新,我count
在每个CUD
操作上都设置了。是否有一种自动的方式来更新count
每个员工向部门添加/删除的信息?(注释/限制或什么?)