dapper 参数不定时用这种方法动态参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dapper 参数不定时用这种方法动态参数相关的知识,希望对你有一定的参考价值。
string where = null; var p = new DynamicParameters(); if (classId != null) { where = " and classId=:classId "; p.Add("classId", classId); } if (key != null) { where = " and (name like :key or description like :key) "; key = string.Format("%{0}%", key); p.Add("key", key); }
以上是关于dapper 参数不定时用这种方法动态参数的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Dapper Query 的动态参数中传递多个条件,就像我们为 IN 运算符传递的一样