public void BatchDeleteTest() { EnterpriseContact v1 = new EnterpriseContact(); EnterpriseContact v2 = new EnterpriseContact(); using (var context = new DataContext(_seed, DBTypeEnum.Memory)) { v1.EnterpriseBasicInfoId = AddEnterpriseBasicInfo(); v2.EnterpriseBasicInfoId = v1.EnterpriseBasicInfoId; context.Set <EnterpriseContact>().Add(v1); context.Set <EnterpriseContact>().Add(v2); context.SaveChanges(); } PartialViewResult rv = (PartialViewResult)_controller.BatchDelete(new string[] { v1.ID.ToString(), v2.ID.ToString() }); Assert.IsInstanceOfType(rv.Model, typeof(EnterpriseContactBatchVM)); EnterpriseContactBatchVM vm = rv.Model as EnterpriseContactBatchVM; vm.Ids = new string[] { v1.ID.ToString(), v2.ID.ToString() }; _controller.DoBatchDelete(vm, null); using (var context = new DataContext(_seed, DBTypeEnum.Memory)) { Assert.AreEqual(context.Set <EnterpriseContact>().Count(), 0); } }
public ActionResult DoBatchDelete(EnterpriseContactBatchVM vm, IFormCollection nouse) { if (!ModelState.IsValid || !vm.DoBatchDelete()) { return(PartialView("BatchDelete", vm)); } else { return(FFResult().CloseDialog().RefreshGrid().Alert("操作成功,共有" + vm.Ids.Length + "条数据被删除")); } }