예제 #1
0
 /// <summary>
 /// Query data from two tables.
 /// </summary>
 /// <typeparam name="T1">The type of the first table.</typeparam>
 /// <typeparam name="T2">The type of the second table.</typeparam>
 public static FromClause <T1, T2> From <T1, T2>() =>
 new FromClause <T1, T2>(
     SqlCompiler.CompileFromClause(typeof(T1), typeof(T2)));
예제 #2
0
 /// <summary>
 /// Query data from two tables.
 /// </summary>
 /// <typeparam name="T1">The type of the first table.</typeparam>
 /// <typeparam name="T2">The type of the second table.</typeparam>
 /// <typeparam name="T3">The type of the third table.</typeparam>
 /// <typeparam name="T4">The type of the fourth table.</typeparam>
 public static FromClause <T1, T2, T3, T4> From <T1, T2, T3, T4>() =>
 new FromClause <T1, T2, T3, T4>(
     SqlCompiler.CompileFromClause(typeof(T1), typeof(T2), typeof(T3), typeof(T4)));
예제 #3
0
 /// <summary>
 /// Query data from a single table.
 /// </summary>
 /// <typeparam name="T">The type of the table.</typeparam>
 public static FromClause <T> From <T>() =>
 new FromClause <T>(
     SqlCompiler.CompileFromClause(typeof(T)));