0

リストビューを使用して、モデル バインディングを使用して一部のデータを表示しています。データ ソースの外部キー列、つまりブック列に関連するリストビューの列を並べ替えようとしています。

データモデルは次のとおりです。

public class Book 
{
    public Book() {
        this.Factions = new HashSet<Faction>();
    }

    public int Id { get; set; }
    [Required]
    [MaxLength(50)]
    public string Title { get; set; }

   public virtual ICollection<Faction> Factions { get; set; }
}

public class Faction 
{    
    public int Id { get; set; }
    [Required]
    [MaxLength(50)]
    public string Name { get; set; }
    [MaxLength(10)]
    public string Abbreviation { get; set; }

    public int? BookId { get; set; }
    public virtual Book Book { get; set; }
}

これは、ListItem の見出しを表示するための HTML です。

<asp:ListView ID="FactionListView" runat="server"
ItemType="DCW.Models.Faction" DataKeyNames="Id"
SelectMethod="FactionGetData"
<LayoutTemplate>
    <table class="table table-hover table-bordered">
        <thead>
            <tr>
               <th>
                    <asp:LinkButton ID="FactionListViewName" runat="server" CommandName="Sort"
                        CommandArgument="Name">Name</asp:LinkButton></th>
                <th>
                    <asp:LinkButton ID="FactionListViewAbbreviation" runat="server" CommandName="Sort"
                        CommandArgument="Abbreviation">Abbreviation</asp:LinkButton></th>
                <th>
                    <asp:LinkButton ID="FactionListViewBook" runat="server" CommandName="Sort"
                        CommandArgument="Book">Book</asp:LinkButton></th>
            </tr>
        </thead>
        <tbody>
            <asp:PlaceHolder ID="itemPlaceholder" runat="server" />
        </tbody>
    </table>
</LayoutTemplate>

Book LinkBut​​ton をクリックすると、次のエラーが表示されます。

Linkbutton CommandArgument を Book.Id または it.Book.Title (他の投稿で読んだことがあるかもしれません) に変更すると、次のエラーが表示されます: Sys.WebForms.PageRequestManagerServerErrorException: Exception has been throw by the target of an呼び出し。

では、モデル バインド リストビューの関連する列を並べ替えるにはどうすればよいでしょうか。

ありがとう。

4

1 に答える 1

0

そのため、Model Binding はそのままではナビゲーション プロパティ (外部キー) の並べ替えを処理しないようです。この問題を解決するために使用したものは次のとおりです 。ASP.Net 4.5 Model Binding Sorting By Navigation Property

したがって、この:

<asp:LinkButton ID="FactionListViewBook" runat="server" CommandName="Sort"
                    CommandArgument="Book">Book</asp:LinkButton></th>

なりました:

<asp:LinkButton ID="FactionListViewBook" runat="server" CommandName="Sort"
                    CommandArgument="Book.Title">Book</asp:LinkButton></th>

そして、私の SelectMethod は次のようになりました。

public IQueryable<GameFaction> FactionGetData(string sortByExpression)
    {
        IQueryable<Faction> query = _context.Factions.Include(faction => faction.Book);

        sortByExpression = sortByExpression == null ? "Name" : sortByExpression;
        if (sortByExpression.EndsWith(" DESC"))
        {
            query = query.OrderByDescending(sortByExpression.SubString(0, sortByExpression.Length - 5));
        }
        else
        {
            query = query.OrderBy(sortByExpression);
        }

        return query;
    }

これは、最初にここから来た上記のリンクに記載されている拡張メソッドを使用することに注意してください: Dynamic LINQ OrderBy on IEnumerable<T>

于 2013-12-28T22:10:00.337 に答える