上一页 1 ··· 3 4 5 6 7
摘要: EF 执行存储过程方法: SqlParameter[] parms = new SqlParameter[] { new SqlParameter("@Detail_Item_ID",model.DETAIL_ITEM_ID), SqlParameter("@Detail_Item_ID1",mod 阅读全文
posted @ 2019-07-26 17:42 无敌土豆 阅读(3179) 评论(0) 推荐(0)
摘要: SELECT DISTINCT BizID ,STUFF( ( SELECT ',' + ApproveName FROM T_Common_ApproveNode WHERE BizID = A.BizID FOR XML PATH('') ) ,1 ,1 ,'' ) AS ApproveName 阅读全文
posted @ 2019-07-26 17:38 无敌土豆 阅读(664) 评论(0) 推荐(0)
摘要: declare @strReturn varchar(max) exec Proc_Fosun_Pay_Tran2WaitPayment 874302,15,@strReturn OUTPUT select @strReturn declare @BillID varchar(max) declar 阅读全文
posted @ 2019-07-26 17:36 无敌土豆 阅读(878) 评论(0) 推荐(0)
摘要: select db_name(st.dbid) as database_name, object_name(st.objectid) as name, p.size_in_bytes / 1024 as size_in_kb, p.usecounts, st.text from sys.dm_exe 阅读全文
posted @ 2019-07-26 17:30 无敌土豆 阅读(1306) 评论(0) 推荐(0)
摘要: public void LoadJson() { using (StreamReader r = new StreamReader("file.json")) { string json = r.ReadToEnd(); List<Item> items = JsonConvert.Deserial 阅读全文
posted @ 2019-07-26 17:24 无敌土豆 阅读(9413) 评论(0) 推荐(0)
摘要: stockInfo.Code = str[0].Substring(str[0].IndexOf("_str_"), str[0].IndexOf("=") - str[0].IndexOf("_str_")).Replace("_str_","");//股票编码 --去掉最后一个字符串 appen 阅读全文
posted @ 2019-07-26 17:19 无敌土豆 阅读(853) 评论(0) 推荐(0)
摘要: string strTripID = string.Join(",", model.TripList.Select(s => "'" + s.TripID + "'")); var togetherList = itogetheremployeeservice.GetTogetherEmployee 阅读全文
posted @ 2019-07-26 17:18 无敌土豆 阅读(3022) 评论(0) 推荐(0)
摘要: ///从List分组后从重组织数据 var res = result.GroupBy(s => new { s.LegalUnitID, s.TYPE_CD, s.TYPE_NAME, s.TYPE_NAME_EN, s.BILLTYPE, s.BasicColor }).ToList(); for 阅读全文
posted @ 2019-07-26 17:17 无敌土豆 阅读(558) 评论(0) 推荐(0)
摘要: 今天莫名其妙的发布博客到github上发现报错了,错误如下: 1:排查是否安装一下hexo-deployer-git这个模块 没有安的话装使用指令安装:npm install hexo-deployer-git --save 2:检查deploy: 下面的节点 如type:这些 需要缩进。 之前是这 阅读全文
posted @ 2019-07-18 11:10 无敌土豆 阅读(2278) 评论(0) 推荐(1)
摘要: 原文地址: https://www.cnblogs.com/bluesummer/p/9047132.html 说明: 各位大神勿喷,自己最近在找工作,所以才将这些内容放在自己博客里,以便自己随时查看 打包dll发布到nuget服务器 几个月前上传过一次nuget包,结果好久不用,今天想更新下,完全 阅读全文
posted @ 2019-05-29 11:20 无敌土豆 阅读(401) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7