我正在寻找在 c# 中处理 mysql 字符串语句的最有效方法。以下伪代码示例显示了一个 @ 字符串文字,其中我在字符串中有 2 个变量需要用变量内容替换。c# 中是否有一种有效且简单的方法来执行此操作?
string region = "northwest";
string market = "Canada";
string stm = @"
select distinct(position)
from plan
where region = 'region'
and market = 'market'
";