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 动态查询结果?

Dapper 示例代码的说明

Dapper 传递动态参数

如何在 Dapper Query 的动态参数中传递多个条件,就像我们为 IN 运算符传递的一样

使用没有字母参数的 Postgresql 的 Dapper 存储过程

dapper利用DynamicParameters构建动态参数查询