我如何在下表中执行左外连接
Product table
- productId (pk)
- productTitle
- pDescription
Product Status
- statusId (pk)
- productId (fk)
- comment
我需要选择Product table
中的所有内容DataAccessAdapter daa = clsMethods.GetNewAdapter();
IPrefetchPath2 pp = new PrefetchPath2(SDL.EntityType.ProductEntity);
pp.Add(ProductEntity.PrefetchPathProductStatus);
RelationPredicateBucket bucketbucket = new RelationPredicateBucket();
bucketbucket.Relations.Add(ProductEntity.Relations.ProductStatusEntityUsingProductId, JoinHint.Left)
以上代码仅返回产品ID记录在产品状态ID中的产品。如何执行左外连接,从产品表中选择所有内容
答案 0 :(得分:0)
为什么不选择以ProductEntity开头?获取Product实体并预取ProductStatusEntity?