partial void DeleteUser(User instance);
partial void UpdateUser(User instance);
private void detach_Users(User entity) { this.SendPropertyChanging(); entity.Role = null; }
partial void InsertUser(User instance);
private void attach_Users(User entity) { this.SendPropertyChanging(); entity.Role = this; }