Beispiel #1
0
 /// <summary>
 /// Creates a command that checks if a table exists
 /// </summary>
 /// <param name="self">The dialect instance to use</param>
 /// <returns>The table exists command.</returns>
 /// <typeparam name="T">The type to generate the command for.</typeparam>
 public static string CreateTableExistsCommand <T>(this IDatabaseDialect self) => self.CreateTableExistsCommand(typeof(T));