使用Linq从多个表中订购多个列表

时间:2013-08-06 16:02:16

标签: c# linq entity-framework

目前,我的数据库中有多个表格,列数略有变化,以便为项目定义不同的“历史”元素。

所以我有我的项目表;

int ItemId {get;set}
string Name {get;set}
Location Loc {get;set}    
int Quantity {get;set}

我可以对这些项目做一些事情,比如移动,增加数量,减少数量,预订给客户,“挑选”一个项目,等等。所以我制作了多个“历史表”,因为它们有不同的值来保存E.g

 public class MoveHistory
 {
    public int MoveHistoryId { get; set; }

    public DateTime Date { get; set; }

    public Item Item { get; set; }

    public virtual Location Location1Id { get; set; }

    public virtual Location Location2Id { get; set; }
 }

 public class PickingHistory
 {
    public int PickingHistoryId { get; set; }

    public DateTime Date { get; set; }

    public Item Item { get; set; }

    public int WorksOrderCode { get; set; }
 }

除了我想要显示列表中显示的项目的完整历史记录之外,这很好;

  

项目123于23/02/2013从Location1移至Location2

     

项目123于2013年2月24日从工作单421

中选取

我正在使用Entity Framework,.NET 4.5,WPF,并使用Linq进行查询,但无法想办法获取这些历史元素列表,并根据日期逐个排序。

我可以想到凌乱的方式,比如一个单独的历史表,如果需要,可以使用列。或者甚至创建一个包含日期及其来源列表的第三个列表,然后循环浏览该列表,从相应列表中选择相应的内容。但是,我觉得必须有更好的方法!

任何帮助都将不胜感激。

3 个答案:

答案 0 :(得分:1)

您面临的问题是您尝试将数据库模型用作显示模型,并且显然失败了。您需要创建一个代表历史网格的新类,然后从各种查询中填充它。从您的示例输出中,显示模型可能是:

public class HistoryRow{
    public DateTime EventDate { get; set; }
    public string ItemName { get; set; }
    public string Action { get; set; }
    public string Detail { get; set; }
}

然后将数据加载到此显示模型中:

var historyRows = new List<HistoryRow>();

var pickingRows = _db.PickingHistory.Select(ph => new HistoryRow{
    EventDate = ph.Date,
    ItemName = ph.Item.Name,
    Action = "picked",
    Detail = "from works order " + ph.WorksOrderCode);
historyRows.AddRange(pickingRows);

var movingRows = _db.MoveHistory.Select(mh => new HistoryRow{
    EventDate = mh.Date,
    ItemName = ph.Item.Name,
    Action = "moved",
    Detail = "from location " + mh.Location1Id + " to location " + mh.Location2Id);
historyRows.AddRange(movingRows );

您可以重复添加各个表中的行以获取HistoryRow操作的大列表,然后按顺序排列该列表并显示值。

foreach(var historyRow in historyRows)
{
    var rowAsString = historyRow.ItemName + " was " + historyRow.Action.....;
    Console.WriteLine(rowAsString);
}

答案 1 :(得分:1)

如果您对历史记录项目实施GetDescription()方法(即使是扩展方法),您也可以这样做:

db.PickingHistory.Where(ph => ph.Item.ItemId == 123)
    .Select(ph => new { Time = ph.Date, Description = ph.GetDescription() })
.Concat(db.MoveHistory.Where(mh => mh.ItemId == 123)
    .Select(mh => new { Time = mh.Date, Description = mh.GetDescription() })
.OrderByDescending(e => e.Time).Select(e => e.Description);

答案 2 :(得分:0)

如果你要实现这个以提供某种撤消/重做历史记录,那么我认为你是以错误的方式解决它。通常,您将拥有一个具有相关参数值的ICommand个对象集合,例如。您存储已发生的操作。然后,您就可以单独为每个项目过滤此集合。

如果您没有尝试实现某种撤消/重做历史记录,那么我误解了您的问题,您可以忽略它。