상속: ISqlCommand
예제 #1
0
 public IEnumerable <T> Batch <T>(BatchContext <T> q)
 {
     return(this.ExecuteBatch(q.CommandText, q.Parameters, q.ParameterSets, q.FnProjector));
 }
예제 #2
0
 public IEnumerable <int> Batch(BatchContext q)
 {
     return(this.ExecuteBatch(q.CommandText, q.Parameters, q.ParameterSets));
 }