C# で mysql 文字列ステートメントを処理する最も効率的な方法を探しています。次の疑似コードの例は、文字列内に変数の内容で置き換える必要がある 2 つの変数がある @ 文字列リテラルを示しています。c# でこれを行うための効率的で簡単な方法はありますか?
string region = "northwest";
string market = "Canada";
string stm = @"
select distinct(position)
from plan
where region = 'region'
and market = 'market'
";