public void Update(DbContext DbContext,Plate entity) { EntityState state = DbContext.Entry(entity).State; if (state == EntityState.Detached) { DbContext.Entry(entity).State = EntityState.Modified; } }
public virtual OperationResult Create(PlateInfo info) { OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!"); using (var DbContext = new CmsDbContext()) { Plate entity = new Plate(); DESwap.PlateDTE(info, entity); PlateRpt.Insert(DbContext, entity); DbContext.SaveChanges(); } result.ResultType = OperationResultType.Success; result.Message = "操作成功!"; return result; }
public virtual OperationResult Create(IEnumerable<PlateInfo> infoList) { OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!"); List<Plate> eList = new List<Plate>(); infoList.ForEach(x => { Plate entity = new Plate(); DESwap. PlateDTE(x, entity); eList.Add(entity); }); using (var DbContext = new CmsDbContext()) { PlateRpt.Insert(DbContext, eList); DbContext.SaveChanges(); } result.ResultType = OperationResultType.Success; result.Message = "操作成功!"; return result; }
public void Insert(DbContext DbContext,Plate entity) { DbContext.Entry(entity).State = EntityState.Added; }
public void Delete(DbContext DbContext,Plate entity) { DbContext.Entry(entity).State = EntityState.Deleted; }
public static void PlateETD(Plate entity, PlateInfo info) { info.Id = entity.Id; info._IdIsDirty = 0; info.ParentId = entity.ParentId; info._ParentIdIsDirty = 0; info.Code = entity.Code; info._CodeIsDirty = 0; info.Name = entity.Name; info._NameIsDirty = 0; info.ImageUrl = entity.ImageUrl; info._ImageUrlIsDirty = 0; info.PlateType = entity.PlateType; info._PlateTypeIsDirty = 0; info.Summary = entity.Summary; info._SummaryIsDirty = 0; info.LimitNum = entity.LimitNum; info._LimitNumIsDirty = 0; info.SYS_OrderSeq = entity.SYS_OrderSeq; info._SYS_OrderSeqIsDirty = 0; info.SYS_IsValid = entity.SYS_IsValid; info._SYS_IsValidIsDirty = 0; info.SYS_IsDeleted = entity.SYS_IsDeleted; info._SYS_IsDeletedIsDirty = 0; info.SYS_Remark = entity.SYS_Remark; info._SYS_RemarkIsDirty = 0; info.SYS_StaffId = entity.SYS_StaffId; info._SYS_StaffIdIsDirty = 0; info.SYS_StationId = entity.SYS_StationId; info._SYS_StationIdIsDirty = 0; info.SYS_DepartmentId = entity.SYS_DepartmentId; info._SYS_DepartmentIdIsDirty = 0; info.SYS_CompanyId = entity.SYS_CompanyId; info._SYS_CompanyIdIsDirty = 0; info.SYS_AppId = entity.SYS_AppId; info._SYS_AppIdIsDirty = 0; info.SYS_CreateTime = entity.SYS_CreateTime; info._SYS_CreateTimeIsDirty = 0; info.SYS_ModifyTime = entity.SYS_ModifyTime; info._SYS_ModifyTimeIsDirty = 0; info.SYS_DeleteTime = entity.SYS_DeleteTime; info._SYS_DeleteTimeIsDirty = 0; }