【发布时间】:2018-08-26 01:11:19
【问题描述】:
类
图书:ID、名称、内容、出版
作者:身份证,姓名
是多对多的
书
Id | Name | Content | Publishment
1 book1 somecontent some pub
2 book2 somecont somepub
作者
Id | Name
1 Author1
2 Author2
3 Author3
4 Author4
图书作者
IdBook | IdAuthor
1 2
1 3
1 4
2 1
2 3
我怎样才能得到类似的东西:
Name | Content | Author
Book1 some content Author2,Author3,Author3
Book2 somecontent Author1,Author3
【问题讨论】:
-
到目前为止你尝试了什么?
标签: c# entity-framework console-application