摘要:
it has a DefiningQuery and no <InsertFunction> element exists in the <ModificationFunctionMapping> element Unable to update the EntitySet 'Users' beca 阅读全文
摘要:
需添加一个using System.Linq; 引用 public void BulkInsert(string connection, string tableName, IList list) { using (var bulkCopy = new SqlBulkCopy(connection)) { ... 阅读全文
摘要:
/// /// Method:CommandHelper /// Author:Liuyangyi /// Data:2016-05-10 /// public class Command { /// 提供标准 MD5 加密的方法 /// /// /// ... 阅读全文
摘要:
做.Net开发的肯定都知道.Net Sql语句有个SqlParameter 一般用来做过滤判断逻辑写,那么到了EF 了还有这样的写法嘛?答案肯定是有的了,这里我只是把最粗糙和简单的写法罗列一些,具体封装方法什么,有兴趣的小伙伴们可以自己去做: 本人原网址:http://www.wuhannews.n 阅读全文
摘要:
只需要开启程序管理控制台(Package Manager Console)然后输入 Enable-Migrations -ContextTypeName youContextdb(你的数据库上下文名称) 阅读全文
摘要:
其实很简单就是一个命令:mozroots--import--ask-remove或者使用:sudoupdate-ca-certificates 阅读全文
摘要:
根据借楼最少资源原则,有时候MVC需要隐藏自己的版本号,其实这里也是比较简单的,只需要在Global.ascx 的Application_Start()中添加一行代码既可添加为 MVCHandler.DisabledMvcResposeHeader=true;既可 阅读全文
摘要:
废话我就不多说了。。上个图。给自己备忘一下 阅读全文
摘要:
这里我就直接把我的页面贴进来了using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using iTextSharp;usi... 阅读全文
摘要:
在实际生产中,比如使用xml json 等传输大量数据的时候,有时候会出现等待时间过长,这里分享一个压缩传输的方法首先到网上去下载一个ICSharpCode.SharpZipLib.dll 的dll (百度和google)都是可以搜索到的 这里本人是在传输xml 格式文本的时候感觉网速稍慢,所以找到... 阅读全文