Leaves() 공개 추상적인 메소드

public abstract Leaves ( ) : IEnumerable
리턴 IEnumerable
예제 #1
0
 public static void ExecuteLeaves(this SqlPreCommand preCommand, CommandType commandType = CommandType.Text)
 {
     foreach (var simple in preCommand.Leaves())
     {
         simple.ExecuteNonQuery(commandType);
     }
 }