예제 #1
0
 private static TPath Build <TR>(Expression <Func <Tpo, TR> > expression)
 => TPath.Build(expression);
예제 #2
0
 public static TPath BuildTPath(this LambdaExpression expr)
 {
     expr.CheckNotNull(nameof(expr));
     return(TPath.Build(expr));
 }