I have a web site that is using EF to build the DB and LINQ to access that data. I am trying to print the data into a list view but nothing is being printed out and I am not sure why.Markup:\[code\]<asp:ListView ID="lvSearchResults" OnPagePropertiesChanged="lvSearchResults_PagePropertiesChanged" runat="server"> <LayoutTemplate> <table style="width: 100%" border="1"> <tr style="text-align:center;"> <td>Item Name</td> <td>Release Region</td> <td style="width: 100px">Factory Sealed</td> <td style="width: 50px">Item Details</td> <td style="width: 50px">Edit Item</td> </tr> <tr id="itemPlaceHolder" runat="server" /> </table> <aspataPager ID="dpSearchResults" PagedControlID="lvSearchResults" PageSize="10" runat="server"> <Fields> <asp:NextPreviousPagerField ButtonType="Button" ShowNextPageButton="false" ShowFirstPageButton="true" ShowLastPageButton="false" ShowPreviousPageButton="true" /> <asp:NumericPagerField ButtonCount="10" /> <asp:NextPreviousPagerField ButtonType="Button" ShowNextPageButton="true" ShowFirstPageButton="false" ShowLastPageButton="true" ShowPreviousPageButton="false" /> </Fields> </aspataPager> </LayoutTemplate> <ItemTemplate> <tr> <td> <%#:Item.Name%> </td> <td> <%#:Item.Region%> </td> <td style="text-align: center;"> <%#:Item.Condition%> </td> <td> <asp:Button ID="btnSelect" Text="View Details" PostBackUrl="/Items/<%#:ItemName%>" runat="server" /> </td> <td> <asp:Button ID="btnEdit" Text="Edit Item" PostBackUrl="/Edit/<%#:ItemName%>" runat="server" /> </td> </tr> </ItemTemplate></asp:ListView>\[/code\]Code-behind:\[code\]byte SelectedType = byte.Parse(ddlCategories.SelectedValue);using (var db = new FullContext()){ var q = (from i in db.Items where i.TypeID == SelectedType || SelectedType == 0 //Get certain type or all types orderby i.Name select new { i.ID, i.Name, i.Region, i.Condition }).ToList(); lvSearchResults.DataSource = q; lvSearchResults.DataBind();}\[/code\]