INSERT INTO [database_name].[schema_name].[existing_table_name](
-- the fields in the existing_table_name
)
SELECT
-- the fields from the first query
任何人都可以帮助我如何添加存储在变量" FieldName"中的字段名称稍后附上" mcardlist。" (以点结尾)。谢谢。
答案 0 :(得分:0)
我想我找到了答案。
PropertyInfo mcardlistinfo = mcardlist.GetType().GetProperty(FieldName);
mcardlistinfo.SetValue(mcardlist,"Test");