为具有相同结构和不同列数的类创建扩展方法
我有一个实体框架数据模式,我向其中插入一些存储过程,并为每个 SP 创建一个复杂类型。例如,我的 sp 1 具有此复杂类型:
sp1_result
{
string c1;
string c2;
string c3;
string c4;
}
例如 sp 2 具有此复杂类型:
sp2_result
{
string c1;
string c2;
}
等等.我想将这个复杂结果的列表转换为DataTable
,但它们具有不同的列数,但它们的类型相同。我如何为此编写一个扩展方法
?
谢谢
I have a Entity Framework data mode that I insert to it some stored procedure and for every of those SPs I create a complex type.For example my sp 1 has this complex type:
sp1_result
{
string c1;
string c2;
string c3;
string c4;
}
and for example sp 2 has this complex type:
sp2_result
{
string c1;
string c2;
}
and so on.I want to convert List of this complex results to DataTable
but they have different number of columns but their types are equal. How I can write an Extension Method
for this?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它利用反射并从对象的
List
集合中创建DataTable
...which make use of reflection and create
DataTable
form theList
collection of the object...