• 共用数据库访问上下文


        public partial class CheckScanService : WCFServiceBase<JL_MFGEntities>, ICheckScanService
        {
            private I_Craft_CardService CarSrv = null;
            public CheckScanService()
            {
                CarSrv = new I_Craft_CardService();
                CarSrv.SetCtx(this.Ctx);
            }
            protected override JL_MFGEntities GetCtx()
            {
                return com.geelyhd.MFG.EFModel.DBCtx.GetCtx();
            }
            public com.geelyhd.MFG.EFModel.TerDishInfo GetTerDishInfo(string lblNo)
            {
    
                var sapSvr = new SAPDataService();
                var response= sapSvr.GetTerDishInfo(lblNo);
                if (response.Code != 0) throw new Exception(response.Msg);
                var ent=new com.geelyhd.MFG.EFModel.TerDishInfo();
                Map<com.geelyhd.MFG.Service.SAPServer.TerDishInfo, com.geelyhd.MFG.EFModel.TerDishInfo>(response.Model, ent);
                return ent;
            }
        }
    View Code
  • 相关阅读:
    使用git管理github项目
    router 跳转页面
    JS中[object object]怎么取值
    微信授权获取code
    闭包
    css属性clear
    javaScript循环
    css属性position
    跨域
    浅析JS内存 一
  • 原文地址:https://www.cnblogs.com/wdfrog/p/5331952.html
Copyright © 2020-2023  润新知