Dapper escape sp_tables 程序错误

Dapper escape sp_tables procedure error

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

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