使用实体表附加局部变量,然后替换为

时间:2016-01-23 15:15:08

标签: asp.net

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。" (以点结尾)。谢谢。

1 个答案:

答案 0 :(得分:0)

我想我找到了答案。

PropertyInfo mcardlistinfo = mcardlist.GetType().GetProperty(FieldName);

mcardlistinfo.SetValue(mcardlist,"Test");