using (CarleaseEntities ctx = new CarleaseEntities())
            {
                TBL1 T1 = ctx.TBL1.FirstOrDefault(t => t.ID == 1);         //一定要先选择此行
                ctx.TBL1FO.ApplyCurrentValues(T1);
                
                ctx.SaveChanges();
            }

相关文章:

  • 2022-12-23
  • 2021-08-24
  • 2021-09-07
  • 2021-06-19
  • 2021-11-09
  • 2022-12-23
  • 2021-04-11
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-24
  • 2021-08-10
  • 2022-01-01
  • 2022-12-23
相关资源
相似解决方案