コード例 #1
0
 public void Update(DbContext DbContext,MaterialPurchase entity)
 {
     EntityState state = DbContext.Entry(entity).State;
        if (state == EntityState.Detached)
        {
       DbContext.Entry(entity).State = EntityState.Modified;
     }
 }
コード例 #2
0
 public virtual OperationResult Create(MaterialPurchaseInfo info)
 {
     OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
     using (var DbContext = new MRPDbContext())
     {
       MaterialPurchase entity = new MaterialPurchase();
       DESwap.MaterialPurchaseDTE(info, entity);
       MaterialPurchaseRpt.Insert(DbContext, entity);
       DbContext.SaveChanges();
     }
     result.ResultType = OperationResultType.Success;
     result.Message = "操作成功!";
     return result;
 }
コード例 #3
0
 public virtual OperationResult Create(IEnumerable<MaterialPurchaseInfo> infoList)
 {
     OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
     List<MaterialPurchase> eList = new List<MaterialPurchase>();
     infoList.ForEach(x =>
     {
         MaterialPurchase entity = new MaterialPurchase();
         DESwap. MaterialPurchaseDTE(x, entity);
         eList.Add(entity);
     });
     using (var DbContext = new MRPDbContext())
     {
     MaterialPurchaseRpt.Insert(DbContext, eList);
     DbContext.SaveChanges();
     }
     result.ResultType = OperationResultType.Success;
     result.Message = "操作成功!";
     return result;
 }
コード例 #4
0
 public void Insert(DbContext DbContext,MaterialPurchase entity)
 {
     DbContext.Entry(entity).State = EntityState.Added;
 }
コード例 #5
0
 public void Delete(DbContext DbContext,MaterialPurchase  entity)
 {
     DbContext.Entry(entity).State = EntityState.Deleted;
 }
コード例 #6
0
ファイル: DESwap.cs プロジェクト: liurongjin/frame
        public static void MaterialPurchaseETD(MaterialPurchase entity, MaterialPurchaseInfo info)
        {
            info.Id = entity.Id;
               info._IdIsDirty = 0;

               info.PurchaseNO = entity.PurchaseNO;
               info._PurchaseNOIsDirty = 0;

               info.FormDate = entity.FormDate;
               info._FormDateIsDirty = 0;

               info.ReceiveDate = entity.ReceiveDate;
               info._ReceiveDateIsDirty = 0;

               info.SumPrice = entity.SumPrice;
               info._SumPriceIsDirty = 0;

               info.SupplyCompanyId = entity.SupplyCompanyId;
               info._SupplyCompanyIdIsDirty = 0;

               info.SupplyCompanyName = entity.SupplyCompanyName;
               info._SupplyCompanyNameIsDirty = 0;

               info.SupplyContact = entity.SupplyContact;
               info._SupplyContactIsDirty = 0;

               info.SupplyMobile = entity.SupplyMobile;
               info._SupplyMobileIsDirty = 0;

               info.SupplyPhone = entity.SupplyPhone;
               info._SupplyPhoneIsDirty = 0;

               info.SupplyFax = entity.SupplyFax;
               info._SupplyFaxIsDirty = 0;

               info.SupplyAddress = entity.SupplyAddress;
               info._SupplyAddressIsDirty = 0;

               info.HandleStationId = entity.HandleStationId;
               info._HandleStationIdIsDirty = 0;

               info.HandleStationName = entity.HandleStationName;
               info._HandleStationNameIsDirty = 0;

               info.HandleStaffId = entity.HandleStaffId;
               info._HandleStaffIdIsDirty = 0;

               info.HandleStaffName = entity.HandleStaffName;
               info._HandleStaffNameIsDirty = 0;

               info.Status = entity.Status;
               info._StatusIsDirty = 0;

               info.Note = entity.Note;
               info._NoteIsDirty = 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;
        }