开发者

Selecting by ID in Castle ActiveRecord

How can I write a criteria to return all Orders that belong to a specific User?

public class User
{
  [PrimaryKey]
  public virtual int Id { get; set; }
}

public class Order
{
  [PrimaryKey]
  public virtual int Id { get; set; }

  [BelongsTo("UserId")]
  public virtual User User { get; set; }
}


return ActiveRecordMediator<Order>.FindAll(
  // What criteria shou开发者_StackOverflow社区ld I write here ?
);


Found the answer:

Restrictions.Eq("User.Id", userId),
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜