예제 #1
0
        public static void CreateTable(this IDAC dac, TableSpecification tableSpecification)
        {
            var builder = dac.CreateSQLBuilder();

            builder.CreateTable(tableSpecification);
            dac.ExecuteBatch(builder);
        }
예제 #2
0
 public virtual DataTable[] ExecuteBatch(ISQLBuilder sqlBuilder)
 {
     return(DecoratedDAC.ExecuteBatch(sqlBuilder));
 }