我对 SQL 和 asp.net 有点陌生,正在尝试创建一个论坛应用程序。我创建了两个表。我正在使用此查询选择表中的数据:
SELECT
forum_categories.CategoryName, forum_subcategories.SubCategoryName
FROM
forum_categories
LEFT JOIN
forum_subcategories ON forum_categories.CategoryId = forum_subcategories.CategoryId
这是查询返回的内容:
现在我需要的是每个 CategoryName 我需要显示它的子类别。我为此使用 ListView:
<asp:ListView ID="ListView1" runat="server" DataSourceID="ForumDataSource">
<ItemTemplate>
<div id='<%#Eval("CategoryName") %>' class="PostCategories">
<h2><asp:Label ID="Label1" runat="server" Text='<%#Eval("CategoryName") %>'></asp:Label></h2>
<table class="ForumPosts">
<thead>
<td>Category</td>
<td>Posts</td>
<td>Last Post</td>
</thead>
<tbody>
<tr>
<td><asp:Label ID="Label2" runat="server" Text='<%#Eval("SubCategoryName") %>'></asp:Label></td>
</tr>
</tbody>
</table>
</div>
</ItemTemplate>
<EmptyDataTemplate>
<p>No Data Found</p>
</EmptyDataTemplate>
</asp:ListView>
<asp:SqlDataSource ID="ForumDataSource" runat="server"
ConnectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\ASPNETDB.MDF;Integrated Security=True;User Instance=True"
ProviderName="System.Data.SqlClient"
SelectCommand="SELECT forum_categories.CategoryName, forum_subcategories.SubCategoryName FROM forum_categories LEFT JOIN forum_subcategories ON forum_subcategories.CategoryId = forum_categories.CategoryId">
</asp:SqlDataSource>
现在每个人都可能已经从代码中了解到这将返回 8 个表。
我想得到的是每个类别都显示它的子类别数据。在这种情况下,应该只有 3 个表
我应该如何解决这个问题?
这应该使用 SQL 解决还是使用服务器端语言处理接收到的数据?