예제 #1
0
 public static string Select <T>(this List <T> list) where T : IEntity, new()
 {
     return(DynamicQuery.Select <T>());
 }
예제 #2
0
 public static string Select <T>(this T detail) where T : IEntity, new()
 {
     return(DynamicQuery.Select <T>(1));
 }
예제 #3
0
 public static string Select <T>(this T detail, string whereStr, string orderBy) where T : IEntity, new()
 {
     return(DynamicQuery.Select <T>(1, whereStr, orderBy));
 }
예제 #4
0
 public static string Select <T>(this List <T> list, string whereStr, string orderBy) where T : IEntity, new()
 {
     return(DynamicQuery.Select <T>(whereStr, orderBy));
 }