轻松加入SubSonic / ActiveRecord?

时间:2010-07-07 16:09:04

标签: .net join subsonic subsonic3 subsonic-active-record

我正在使用SubSonic和ActiveRecord模板。到目前为止,我非常喜欢它,但无法弄清楚如何进行连接查询。我已阅读this link但其创建的生成的类模板没有IColumn

类型的任何内容

我在这里缺少什么吗?另外,我正在使用SubSonic 3.0

1 个答案:

答案 0 :(得分:2)

您可以使用简单的Linq查询与Subsonic进行连接。

例如:

var products = from p in Product.All()
               join od in OrderDetail.All() on p.ProductID equals od.ProductID
               select p;