通过sql返回父子数据

发布于 2024-08-03 02:08:28 字数 336 浏览 3 评论 0原文

我现在的情况是想返回文章对象列表。 Article 对象的属性如下所示。

private int _articleId;

private string _articleName;

private List<Tag> _tags;

现在,正如您所看到的,文章对象有一个名为 _tags 的属性,它是“标签”类型的列表。现在假设我想返回 Article 对象的列表,当我返回 Article 对象的列表时,如何填充此类型标签列表。

我希望显示结果如下:

ArticleName 

Tag1 Tag2 Tag3

I am in a situation where I want to return a list of article objects. The properties of Article object looks as follows.

private int _articleId;

private string _articleName;

private List<Tag> _tags;

Now as you can see the article object has a property called _tags which is a list of type "Tag". Now assuming that I want to return a list of Article objects, how can i populate this list of type Tags when I am returning the list of Article objects.

I am looking to display the result as follows:

ArticleName 

Tag1 Tag2 Tag3

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半窗疏影 2024-08-10 02:08:28

这就是我会使用 Hibernate 或 NHibernate 的事情。

这个答案实际上提供了很好的帮助。

This is the sort of thing I would employ Hibernate or NHibernate for.

This answer actually provides a great leg up.

櫻之舞 2024-08-10 02:08:28

获取文章列表。

然后使用 SQL 查询获取标签列表(假设生成的数据具有某种标识符,表明它适用于哪篇文章。

循环这些标签并相应地为正确的文章构建列表。

Get the list of Articles.

Then use a SQL query to get the list of Tags (assuming the resulting data has some sort of identifier as to what article it applies to.

Loop over these tags and build the lists for the correct Articles accordingly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文