我是 C# 的新手,我正在努力解决所有问题,请帮忙。这是我正在尝试做的事情:
创建一个数据库类,它返回一个动态列表,其中包含一个类的实例,具体取决于正在查询的表:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using System.Reflection;
Class MYDatabase{
public void main ()
{
String QueryString="select COLUMN_NAME, DATA_TYPE from information_schema.columns where table_name = 'mytable'";
Object MyData=GetRsults(QueryString,"SchemaStructure");
}
public static Object GetResults(string QueryString, String ClassName)
{
SqlCommand cmd = new SqlCommand();
SqlDataReader reader;
cmd.CommandText = QueryString;
cmd.CommandType = CommandType.Text;
//assuming I already defined my connection
cmd.Connection = Connection;
Connection.Open();
reader = cmd.ExecuteReader();
Type ClassType = Type.GetType(ClassName);
Type ListType = typeof(List<>).MakeGenericType(new Type[] { ClassType });
Object Results = Activator.CreateInstance(ListType);
Object SingleResult = Activator.CreateInstance(ClassType);
while (reader.Read())
{
for (int i = 0; i < reader.FieldCount; i++)
{
var PropName= SingleResult.GetType().GetProperty(reader.GetName(i).ToString());
//Convert.ChangeType(value, propertyInfo.PropertyType)
PropName.SetValue(PropName,reader.GetValue(i).ToString(),null);
}
Results.Add(SingleResult);
}
Connection.Close();
return Results;
}
}
class SchemaStructure
{
public string COLUMN_NAME { set; get; }
public string DATA_TYPE { set; get; }
}
这不起作用,该行Results.Add(SingleResult);
给我一条消息
“对象”不包含“添加”的定义,并且找不到接受“对象”类型的第一个参数的扩展方法“添加”(您是否缺少 using 指令或程序集引用?)
谁能帮我解决这个代码?
如果我的方法根本没有意义,我愿意接受其他建议。
谢谢