1

所以我正在尝试创建一个返回数据列表的函数,数据有许多“子”类,其中一个是评论,但是,如果日期的类型是评论(我用 IF 语句测试)那么我想orderby 编辑日期而不是 id(ID 可用于所有数据对象,而编辑日期仅可用于评论类)。因此,我没有做 TypeOf,而是做 TypeOf,然后我可以在编辑日期订购它,但是它想返回一个列表,但我需要它是一个列表,但是我已经用谷歌搜索了一个小时 + 并没有找到运气关于如何转换它。这是方法:

private List<T> GetAllData<T>() where T : Data, new()
    {
        List<T> TmpList = new List<T>();
        if (typeof(T) == typeof(Comment))
        {
            TmpList = _newdb.Data.OfType<Comment>().OrderBy(x => x.EditDate).ToList();
            // THIS ABOVE doesn t work ofc since it wants to return a List<Comment> but TmpList is a List<T>

            //List<Comment> TmpComments = _newdb.Data.OfType<Comment>().OrderBy(x => x.EditDate).ToList();
            // List<T> tempzor = new List<T>(TmpComments.ToList());
            //TmpList = (List<T>(TmpComments));
            // TmpList = TmpComments.ConvertAll;
        }
        else
        {
            TmpList = _newdb.Data.OfType<T>().OrderBy(x => (x.Id)).ToList();
        }
        return TmpList;
    }

提前致谢!

4

1 回答 1

5

您可以投射整个列表:

TmpList = _newdb.Data.OfType<Comment>().OrderBy(x => x.EditDate).Cast<T>().ToList();
于 2012-07-23T18:07:56.077 回答