//********************************************************** //* Добавление нового типа Vm //********************************************************** public static void AddType(String description) { using (SandBoxDataContext db = new SandBoxDataContext()) { Int32 maxType = (from t in db.VmTypes orderby t.Type select t.Type).Max(); VmType vmType = new VmType { Type = maxType + 1, Description = description }; db.VmTypes.InsertOnSubmit(vmType); db.SubmitChanges(); } }
partial void DeleteVmType(VmType instance);
partial void UpdateVmType(VmType instance);
partial void InsertVmType(VmType instance);
private void detach_VmTypes(VmType entity) { this.SendPropertyChanging(); entity.Vm = null; }
private void attach_VmTypes(VmType entity) { this.SendPropertyChanging(); entity.Vm = this; }