Leaves() public abstract method

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