上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

2017年6月4日

asp.net config 配置

摘要: 1 <httpErrors errorMode="Custom" existingResponse="Replace"> <clear/> <remove statusCode="404" subStatusCode="-1"/> <error statusCode="404" path="/tes 阅读全文

posted @ 2017-06-04 19:42 木龙哥 阅读(335) 评论(0) 推荐(0) 编辑

2017年5月24日

nuget.exe push won't use API Key

摘要: I had the same issue today on v3.4.3.855.I set the api key using the required command, then when I ran the push I got this warning: WARNING: No API Ke 阅读全文

posted @ 2017-05-24 22:49 木龙哥 阅读(589) 评论(0) 推荐(0) 编辑

String.prototype.formatWith

摘要: 1 String.prototype.formatWith = function () { 2 var args = arguments; 3 var reg = /\{(\d+)\}/g; 4 return this.replace(reg, function (g0, g1) { 5 return args[+g... 阅读全文

posted @ 2017-05-24 11:02 木龙哥 阅读(293) 评论(0) 推荐(0) 编辑

2017年5月23日

未能找到文件“\bin\roslyn\csc.exe”

摘要: 出现这个问题可能是因为VS没有把Roslyn的编译器正确地放到网站Bin文件夹的roslyn文件夹中。这时候可以从Nuget程序包文件夹中复制Roslyn编译器到网站的Bin/roslyn文件夹中。Nuget程序包文件夹一般与.sln解决方案文件在同一个目录下。Roslyn编译器在Nuget文件夹中 阅读全文

posted @ 2017-05-23 15:38 木龙哥 阅读(12956) 评论(1) 推荐(3) 编辑

2017年5月17日

Azure DocumentDB

摘要: LINQ Only Supported 'Queryable.Where', 'Queryable.Select' & 'Queryable.SelectMany' 阅读全文

posted @ 2017-05-17 09:42 木龙哥 阅读(253) 评论(0) 推荐(0) 编辑

2017年4月11日

查询表中所有字段的最大长度(大数据情况)

摘要: DECLARE @tableName NVARCHAR(50)= 'home'; IF OBJECT_ID(N'TableColumnMaxLen', N'U') IS NULL BEGIN CREATE TABLE TableColumnMaxLen ( TableName NVARCHAR(50) NOT NUL... 阅读全文

posted @ 2017-04-11 22:25 木龙哥 阅读(5406) 评论(1) 推荐(1) 编辑

2017年4月9日

查询表中所有字段的最大长度

摘要: DECLARE @tableName NVARCHAR(50)= 'home'; DECLARE @tmpTable TABLE ( ColumnName NVARCHAR(50) NOT NULL PRIMARY KEY , ColumnMaxLen INT NOT NULL ); INSERT @tmpTable SELECT C... 阅读全文

posted @ 2017-04-09 22:54 木龙哥 阅读(1347) 评论(0) 推荐(0) 编辑

linux开发

摘要: ln -s /opt/dotnet/dotnet /usr/local/bin dotnet --version nginx –s reload 阅读全文

posted @ 2017-04-09 16:17 木龙哥 阅读(110) 评论(0) 推荐(0) 编辑

2017年4月8日

sql server cvs 导入

摘要: 一、使用导入数据工具: 选择数据源: Flat File Source , 选择一个csv文件, 格式中文本限定符(导入导出要保持一致,常用“包含字段中含有分隔符) Advance: 选择所有的列(可以多选,使用Shift), 改OutputColumnWidth:500, 改DataType:Un 阅读全文

posted @ 2017-04-08 15:09 木龙哥 阅读(1461) 评论(0) 推荐(0) 编辑

2017年3月17日

清除“远程桌面连接”的历史记录

摘要: 1 @echo off 2 echo ---------------------------------------------------------------------------------- 3 echo ------------------------- 清除“远程桌面连接”的历史记录----------------------------- 4 echo --------... 阅读全文

posted @ 2017-03-17 11:58 木龙哥 阅读(2988) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

导航