我正在尝试通过 sql 代码或 c# 代码创建动态 sql 语句。例如,我想根据包含表名的字符串生成结果集。目前,我正在通过 c# 代码执行此操作。
我当前的问题是我想生成类似于以下内容的搜索
select * from customers
where ContactName+City like '%Berlin%'
所以我想给一个表名作为字符串参数我需要以某种方式生成一个字符串变量'ContactName+City+etc'
来构建搜索的一部分
我也对任何其他想法持开放态度。
var sql = string.Format(@"
select * from {0}
where {1} like '%criteria%'"
, variable_table
, "column1+column2+columnX"); //need function here to produce this string based on variable table?
基本上,我将如何创建一个基于 variable_table 将可变数量的列连接在一起()的字符串'ContactName+City+etc'
?