LINQ TO SQL的多表联查

2025-04-27 12:10:00
推荐回答(1个)
回答1:

var ns=(from n in news join c in comment on n.id equals c.nid).Take(5);