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),
精彩评论