コード例 #1
0
ファイル: LinqExtension.cs プロジェクト: EdutechSRL/Adevico
 public static INHibernateQueryable <T> Expand <T>(this INHibernateQueryable <T> q, Expression <Func <T, object> > action)
 {
     return((INHibernateQueryable <T>)q.Expand(PropertyName <T>(action)));
 }
コード例 #2
0
ファイル: LinqExtension.cs プロジェクト: EdutechSRL/Adevico
 public static INHibernateQueryable <T> ExpandPath <T>(this INHibernateQueryable <T> q, Expression <Func <T, object> > action)
 {
     return((INHibernateQueryable <T>)q.Expand(StronglyTypeHelper.PropertyPath <T, object>(action)));
 }