Dapper转义sp_tables过程错误

本文关键字:过程 错误 tables 转义 sp Dapper | 更新日期: 2023-09-27 18:00:31

Am试图使用dapper执行sp_tables存储过程,并按如下方式转义过程名称,但仍出现错误。var procName = @"sp_tables @table_type = ""'type', 'TABLE'""";var tables = con.Query(procName, commandType: CommandType.StoredProcedure);

Dapper转义sp_tables过程错误

为了将来参考,我就是这样解决的。var tables = con.Query("sp_tables", new { table_type = @"""'type', 'TABLE'""" }, commandType: CommandType.StoredProcedure);