.Net中是否有任何inbuild方法可以将数据表转换为poco类对象。
为了更好地了解我的情况,请通过以下内容,
我有一个特定的要求,我会得到如下所示的多个数据表
Name || Value
---------------------------------------
DashboardName || DashBoard1
myparam1 || abc
myparam2 || def
myparam3 || xyz
type || MyClass
Name || Value
---------------------------------------
DashboardName || DashBoard2
myparamnew || abc
myparamnew2 || def
myparamnew3 || xyz
type || MyClass2
我有两个班级
public class MyClass
{
public string myparam1{ get; set; }
public string myparam2{ get; set; }
public string myparam3{ get; set; }
}
public class MyClass2
{
public string myparamnew1{ get; set; }
public string myparamnew2{ get; set; }
public string myparamnew3{ get; set; }
}
因此,基于数据表的类型值,我想将数据表转换为特定类型的类。
有人可以引导我走向正确的方向来实现我的目标吗?
答案 0 :(得分:0)