摘要:
1.数据转换异常:从第一条开始看. 2.c# type.GetProperty 如何不让区分大小写 MethodInfo methodInfo = type.GetMethod(methodname, BindingFlags.Public | BindingFlags.IgnoreCase|Bin 阅读全文
摘要:
在使用dapper进行数据查询时遇到的一个问题,今天进行问题重现做一个记录,免得忘记以后又犯同样的错误。 自己要实现的是:select * from tablename where id in(1,2)这样的一个查询语句。自己以为的写法应该是这样的,代码如下: List<CICUser> userL 阅读全文
摘要:
https://www.cnblogs.com/dawenyang/p/11363236.html 阅读全文
摘要:
select case when '' is null then '1' else '2' end 2 阅读全文
摘要:
WebApi过滤器使用和请求实体合法性验证 - liyanbo - 博客园 (cnblogs.com) c# WebApi之身份验证:Basic基础认证 - 灰信网(软件开发博客聚合) (freesion.com) 阅读全文
摘要:
不废话,直接上代码 前端代码 <input type="button" class="layui-btn" value="Test-GetFileFromWebApi" onclick="GetFileFromWebApi(this)" /> <script> function GetFileFro 阅读全文
摘要:
本来代码已经写好了,传递给前台文件路径就可以,后来同事告诉我,给路径可能下载不了,文件可能放在另一台服务器,告诉我说用流进行下载,然后就开始百度加上找现在公司的代码,做出来了,感觉怪怪的。 //判断路径是否存在,不存在则创建 var basePath = Path.Combine(ProjectCo 阅读全文
摘要:
/// <summary> /// 文件获取 /// </summary> /// <returns></returns> [MapToApiVersion("1.0")] [Route("v{version:apiVersion}/GetFile")] public HttpResponseMes 阅读全文
摘要:
using NPOI.HSSF.UserModel; using NPOI.SS.UserModel; using System; using System.Collections; using System.Collections.Generic; using System.IO; using S 阅读全文
摘要:
form+authentication: 这篇转载自:https://www.cnblogs.com/yujihaia/p/7367559.html 使用Authorize特性进行身份验证 通常情况下,应用程序都是要求用户登录系统之后才能访问某些特定的部分。在ASP.NET MVC中,可以通过使用A 阅读全文