0

投票して並べ替えることができるいくつかのクラスを定義する抽象クラスがあります。これらのクラスはすべて、並べ替えの対象となるプロパティを共有しているため、これらのプロパティで並べ替えることができるメソッドを抽象レベルで含めたいのですが、「パラメーターに割り当てられない」エラーで問題が発生しています。 。

次の処理方法を教えてください。

internal abstract class ESCO
{
    public double HotScore { get; set; }
    public double VoteTotal { get; set; }
    public DateTime Created { get; set; }

    protected static List<ESCO> SortedItems(List<ESCO> escoList, ListSortType sortType)
    {
        switch (sortType)
        {
            case ListSortType.Hot:
                escoList.Sort(delegate(ESCO p1, ESCO p2) { return p2.HotScore.CompareTo(p1.HotScore); });
                return escoList;
            case ListSortType.Top:
                escoList.Sort(delegate(ESCO p1, ESCO p2) { return p2.VoteTotal.CompareTo(p1.VoteTotal); });
                return escoList;
            case ListSortType.Recent:
                escoList.Sort(delegate(ESCO p1, ESCO p2) { return p2.Created.CompareTo(p1.Created); });
                return escoList;
            default:
                throw new ArgumentOutOfRangeException("sortType");
        }
    }
    private SPUser GetCreatorFromListValue(SPListItem item)
    {
        var user = new SPFieldUserValue(SPContext.Current.Web, (string)item["Author"]);
        return user.User;
    }
    private static VoteMeta InformationForThisVote(List<Vote> votes, int itemId)
    {} // There are more methods not being shown with code to show why I used
       // abstract instead of something else
}

そのように実装しようとしています:

class Post : ESCO
{
    public string Summary { get; set; } // Properties in addition to abstract
    public Uri Link { get; set; } // Properties in addition to abstract 

    public static List<Post> Posts(SPListItemCollection items, ListSortType sortType, List<Vote> votes)
    {
        var returnlist = new List<Post>();
        for (int i = 0; i < items.Count; i++) { returnlist.Add(new Post(items[i], votes)); }
        return SortedItems(returnlist, sortType);
    }

私は「あなたはそれをすべて間違っている」と完全にオープンです。

4

1 に答える 1

2

同じエラーメッセージを再現することはできませんが、発生しているエラーは

return SortedItems(returnlist, sortType);

抽象基本クラスのリストを返そうとしています。これをに変更してみてください

return SortedItems(returnlist, sortType).Cast<Post>().ToList();

System.Linq名前空間をまだ含めていない場合は、含める必要があります。

参考までに、(簡略化されたテストケースで)私が得るエラーは

Cannot implicitly convert type System.Collections.Generic.List<MyNamespace.ESCO>' to 'System.Collections.Generic.List<MyNamespace.Post>'

于 2012-08-21T02:03:14.493 に答える