通过sql返回父子数据
我现在的情况是想返回文章对象列表。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我会使用 Hibernate 或 NHibernate 的事情。
这个答案实际上提供了很好的帮助。
This is the sort of thing I would employ Hibernate or NHibernate for.
This answer actually provides a great leg up.
获取文章列表。
然后使用 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.