有两种方案可以实现此功能
方案一
为项目或解决方案添加 .editorconfig 文件, 修改或新增以下内容。
1 |
file_header_template = ==================================\n\n描述: \n\n作者: \n\n日期: \n\n版权: \n\n================================== |
在任意 .cs… 阅读全文
有两种方案可以实现此功能
为项目或解决方案添加 .editorconfig 文件, 修改或新增以下内容。
1 |
file_header_template = ==================================\n\n描述: \n\n作者: \n\n日期: \n\n版权: \n\n================================== |
在任意 .cs… 阅读全文
npm 有两个代理设置,一个是 http 代理,一个是 https 代理。
在命令行设置代理服务器。
1 2 3 4 5 6 |
#获取 http 请求的代理设置 npm config get proxy npm config set proxy="http://127.0.0.1:1080" #获取 https 请求的代理设置 npm config get https-proxy npm config set https-proxy="http://127.0.0.1:1080" |
代理服务器可以使用小灰机(小灰机同时支持 socks 代理和 http 代理)… 阅读全文
当前最新 .net core 版本为 2.1
打开 .net core 下载页面,https://www.microsoft.com/net/download/linux ,页面包含 .net core sdk 及 .net core runtime 两个安装包。
如果需要在 linux 上进行开发,要安装 .net core sdk 版本,不需要开发推荐安装 .net core runtime 版本。
点击 install .NET Core 2.1 Runtime ,进入下载页面,在下拉框中选择 Centos。
按提示输入以下命令
使用 MySql EF6 DBfirst 生成模型时经常会遇到EF6模式无法选择的情况 究其原因, 还是因为没有正确的使用 Connector/Net. 下面说一下使用方法. 使用 MySql DBFirst 前先确保安装了 MySql, MySQL for Visual Studio, Connector/Net 注意: MySQL for Visual Studio, Connector/Net 版本要对应 MySql 版本.
1 |
Install-Package EntityFramework |