Leaves() public abstract method

public abstract Leaves ( ) : IEnumerable
return IEnumerable
Ejemplo n.º 1
0
 public static void ExecuteLeaves(this SqlPreCommand preCommand, CommandType commandType = CommandType.Text)
 {
     foreach (var simple in preCommand.Leaves())
     {
         simple.ExecuteNonQuery(commandType);
     }
 }