07 2018 档案

摘要:附上OData的官网地址:https://www.odata.org/ OData的介绍参考地址: 微软文档介绍OData https://www.cnblogs.com/darrenji/p/4926011.html https://www.cnblogs.com/1zhk/p/5356053.h 阅读全文
posted @ 2018-07-27 11:08 Jonny-Xhl 阅读(272) 评论(0) 推荐(0)
摘要:-- Created on 2018/7/20 by XHL declare -- Local variables here v_select varchar2(100); Type my_cursor is ref cursor;--声明动态游标类型 v_cursor my_cursor;--定义 阅读全文
posted @ 2018-07-20 16:27 Jonny-Xhl 阅读(182) 评论(0) 推荐(0)
摘要:先赋一个sql语句,然后转lambda表达式。//select a.`Name` as 停车场, //sum(b.ShouldPayAmount) as 总金额, //count(b.ShouldPayAmount) as 总条数 //from parkinglot a left //join pa 阅读全文
posted @ 2018-07-13 14:29 Jonny-Xhl 阅读(389) 评论(0) 推荐(0)
摘要:解析html最主要的就是利用正则表达式解析w3c中的html标签 public class HtmlHelper { public static string ReplaceHtmlTag(string html, int length = 0) { string strText = System. 阅读全文
posted @ 2018-07-04 11:39 Jonny-Xhl 阅读(98) 评论(0) 推荐(0)