partial void Deletetodo(todo instance);
partial void Updatetodo(todo instance);
private void detach_todos(todo entity) { this.SendPropertyChanging(); entity.user = null; }
partial void Inserttodo(todo instance);
private void attach_todos(todo entity) { this.SendPropertyChanging(); entity.user = this; }