摘要:
public DataSet ExecuteProcedure(string Procedure, IDataParameter[] parameters) { using (ContextEntities Entities = new ContextEntities()) { using (Ent 阅读全文
摘要:
测试表【test1】 错误的写法: select s1.kc1-s2.kc2 from ( ( select kc as kc1 ,[MONTH] from test1 where [type]=1 ) s1 left join ( select kc as kc2,[MONTH] from tes 阅读全文
摘要:
查看mysql和sqlserver数据库的默认编码方法 mysql: show variables like 'character\_set\_%'; show variables like 'collation_%'; sqlserver: SELECT COLLATIONPROPERTY('Ch 阅读全文
摘要:
ASP.NET Core 的运行机制 ASP.NET Core 的运行机制如上图所示, 现在做一下详细说明. ①Web Server: ASP.NET Core提供两种服务器可用, 分别是Kestrel和HTTP.sys(Core 1.x 中被命名为 WebListener), A. Kestrel 阅读全文