我有一个映射了许多关系的类。应该为具体用户获取这些关系之一。
public class Company
{
public int id { get; set; }
public string Name { get; set; }
public IList<StocksPack> stocks { get; set; }
// a lot of other properties referencing other objects
}
public class StocksPack
{
public int stockId { get; set; }
public int companyId { get; set; }
public int amount { get; set; }
public int ownerId { get; set; }
}
我如何映射stocks
要左外连接的
ON stocks.companyId = company.id AND stocks.ownerId = 123456
实际ownerId
情况仅在运行时才知道,在用户登录系统之后。我想为具体用户获取有关公司的所有信息以及该公司的列表Stocks
。