1

我有一个 OrdersInfo 列表,我将 OrdersInfo 继承到 YearlyResourceReport 并添加 12 个属性 - 月(公共字符串 Jan {get;set;})等

现在我创建了一个新类的列表(所以 [OldProperties] + [12Month])

如何将两个列表合并在一起?

class YearlyResourceReport : OrdersInfo
{
    public string Jan { get; set; }
    public string Feb { get; set; }
    public string Mar { get; set; }
    public string Apr { get; set; }
    public string Jun { get; set; }
    public string Jul { get; set; }
    public string Aug { get; set; }
    public string Sep { get; set; }
    public string Oct { get; set; }
    public string Nov { get; set; }
    public string Dec { get; set; }

}

添加:

List<OrdersInfo> ordersList = 
WorkOrderEntity.GetYearlyOrders(year, loggedInUser, customerIds, sortBy).ToList();

List<YearlyResourceReport> newList;

我希望将属性添加到第一个列表(根本不必创建第二个列表),或者只是作为最后一个度量合并两个列表。

4

2 回答 2

4

这应该作为一个例子让你走上正确的道路:

class A
{
    public string PropertyA { get; set; }

    public override string ToString() { return this.PropertyA; }
}

class B : A
{
    public string PropertyB { get; set; }

    public override string ToString() { return string.Format("{0} - {1}", this.PropertyA, this.PropertyB); }
}

var aList = new List<A>();
var bList = new List<B>();

for (int i = 0; i < 10; i++)
{
    aList.Add(new A() { PropertyA = string.Format("A - {0}", i) });
    bList.Add(new B() { PropertyA = string.Format("B::A - {0}", i), PropertyB = string.Format("B::B - {0}", i) });
}

// now list the current state of the two lists
for (int i = 0; i < 10; i++)
{
    Console.WriteLine(aList[i]);
    Console.WriteLine(bList[i]);
}

Console.WriteLine();
Console.WriteLine();

// now merge the lists and print that result
var newList = bList.Concat(aList.Select(a => new B() { PropertyA = a.PropertyA, PropertyB = "Created by system." }));
foreach (var item in newList)
{
    Console.WriteLine(item);
}

在上面的示例中,我有一个类AB并且B继承自A并添加了一个属性。然后我建立了两者的清单并将它们写到Console. 在这样做之后,我们然后合并两个列表,B从 ' 中创建 ',A因为单个泛型列表必须具有相同的类型。你可以想象使用类似的东西ArrayList而不是通用列表并容纳两种不同的类型 - 但我认为这不是你想要的。

合并类型后,我们也会将该合并的结果写出,Console您会看到两个列表合并。

如果您的要求稍有不同,这将使您完成 90% 以上的工作,因为老实说,您的问题并没有包含太多信息,所以您让我们假设一些事情。

注意:我曾经scriptcs编译、运行和证明这个例子,所以这就是它没有那么结构化的原因。

于 2013-04-24T12:40:55.060 回答
1

如果我确实正确理解了您的问题,您会想要这样做。

// Your class definitions
public class YearlyResourceReport
{
    public YearlyResourceReport()
    {
        this.MonthlyResourceReports = new List<MonthlyOrderInfo>();
    }

    public List<MonthlyOrderInfo> MonthlyResourceReports { get; set; }
}

public class MonthlyOrderInfo
{
    public string Month { get; set; }
    public int MonthNumber { get; set; }
    public OrdersInfo OrdersInfo { get; set; }
}

public class OrdersInfo
{
    public int Id { get; set; }
    public string description { get; set; }
    public int TotalOrders { get; set; }
    public double TotalRevenue { get; set; }
}

您可以按如下方式创建包含 YearlyResourceReport 类:

 public YearlyResourceReport GetYearlyOrders()
 {
    YearlyResourceReport yrr = new YearlyResourceReport();
    for(int i = 1; i <= 12; i++)
    {
        yrr.MonthlyResourceReports.Add(new MonthlyOrderInfo {
        moi.MonthNumber = i,
        moi.OrdersInfo = WorkOrderEntity.GetMonthlyOrders(year, i, loggedInUser, customerIds, sortBy).ToList()
        });
    }
    return result;
 }
于 2014-11-13T12:36:28.360 回答