I'm using a Listview to display some data using model binding and I'm trying to sort a column in the listview that relates to a foreign key column in the data source, namely the book column.
The Data Model is as follows:
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; }
}
And this is the HTML to display the headings for the ListItem
<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>
When clicking on the Book LinkButton I get the error: Sys.WebForms.PageRequestManagerServerErrorException: DbSortClause expressions must have a type that is order comparable.
If I change the Linkbutton CommandArgument to either Book.Id or it.Book.Title (which I had read on some other posts might work) then I get the error: Sys.WebForms.PageRequestManagerServerErrorException: Exception has been thrown by the target of an invocation.
So how do I sort a related column of a Model Bound Listview?
Thanks.