SQL Server 预编译执行SQLs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL Server 预编译执行SQLs相关的知识,希望对你有一定的参考价值。

问题描述:

MVC5项目,利用执行sql的方式获取数据,但是在利用预编译执行的时候报错了,字段XXXwhich was not supplied.

其实就是这个参数传了个null导致的。在传参数之前做个判断,如果为null就赋值为空串即可。

技术分享

 (=

String sql = "select a.Id,a.UserName,a.TrueName,ISNULL(b.OTM, ‘0‘) as Flag from SysUser a left join FIX_MatchingModel b on cast(a.Id as varchar) = b.OTM and b.Id = @matchingId Where a.DepId = @DepId order by b.OTM desc";
SqlParameter[] sqlParameters = { new SqlParameter { ParameterName = "matchingId", Value = matchingId }, new SqlParameter { ParameterName = "DepId", Value = depId } };
DbContexts DbContext = new DbContexts();
return DbContext.Database.SqlQuery<UserView>(sql, sqlParameters).ToList();

技术分享


以上是关于SQL Server 预编译执行SQLs的主要内容,如果未能解决你的问题,请参考以下文章

mybatis以及预编译如何防止SQL注入

SQL预编译中order by后为什么不能参数化原因

在 myeclipse中进行连接sql server的测试

sqlserver 问题

PDO预编译语句执行查询与DML操作

导致资产预编译在heroku部署上失败的代码片段