我是新的ASP.NET Web Forms开发人员,我正在尝试使用带有Repository Pattern的ObjectDataSource开发n层应用程序。到目前为止,我做得很好,但我正在努力根据QueryString的值检索其中一个页面中的数据。
我有以下数据库架构:
Product Table: Id, Title, CategoryId
Category Table: Id, Title
用户必须访问列出所有类别的页面。然后,当他选择其中一个类别时,他将被重定向到另一个页面,该页面根据所选类别列出产品。我仍然在努力解决这个问题,我无法找到解决方法。
ASP.NET代码:
<asp:ListView ID="productList" runat="server"
DataSourceID="odsProduct" DataKeyNames="Id">
<LayoutTemplate>
<ul class="cbp-ig-grid">
<asp:PlaceHolder ID="itemPlaceholder" runat="server"></asp:PlaceHolder>
</ul>
</LayoutTemplate>
<ItemTemplate>
<li class=" animated7">
<a href="ProductDetails.aspx?productID=<%#Eval("Id") %>">
<img src="../Assets/upload/Products/<%#Eval("ImagePath") %>" width="350" height="190">
<h3 class="cbp-ig-title"><%#Eval("Name") %></h3>
<span class="cbp-ig-category"><%#Eval("Description") %></span></a>
</li>
</ItemTemplate>
<EmptyDataTemplate>
<span>No data was returned.</span>
</EmptyDataTemplate>
</asp:ListView>
<asp:ObjectDataSource ID="odsProduct" runat="server"
TypeName="ThinkSafetyFirst_DatabaseFirst.BLL.ProductBL"
DataObjectTypeName="ThinkSafetyFirst_DatabaseFirst.DAL.Product"
SelectMethod="GetProducts">
<SelectParameters>
<asp:QueryStringParameter QueryStringField="categoryId" Name="CategoryId " />
</SelectParameters>
</asp:ObjectDataSource>
这是ProductRepository类的C#代码:
public class ProductRepository : IDisposable, IProductRepository
{
private readonly TestContext dbContext = new TestContext();
public IEnumerable<TTSF_Product> GetProducts()
{
return dbContext.TTSF_Product.Include("TTSF_Category").ToList();
}
public TTSF_Product GetProduct(int id)
{
TTSF_Product proObj = dbContext.TTSF_Product.Find(id);
return proObj;
}
}
您能告诉我为什么我仍然会收到以下错误吗?
提前感谢您的帮助。
答案 0 :(得分:2)
在ObjectDataSource
中,您将SelectMethod
定义为GetProducts
,但您的存储库中的方法GetProducts
没有名为CategoryId
的参数
您应该为GetProducts
方法添加一个以CategoryId
为参数的重载。