Exemplo n.º 1
0
 /// <summary>
 /// 右关联
 /// </summary>
 /// <param name="table"></param>
 /// <param name="onWhere"></param>
 /// <returns></returns>
 public TableRelation <T> RightJoin <TJoin>(Table table, WhereClip onWhere)
     where TJoin : Entity
 {
     section.RightJoin <TJoin>(table, onWhere);
     return(this);
 }