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);
     }
 }