예제 #1
0
 public void StartBlock(string name)
 {
     if (blockElement != null)
     {
         blockElement.StartBlock(name);
         return;
     }
     blockElement = new CompositeSqlDefinitionElement(this.builder, this, name);
     this.elements.Add(blockElement);
 }
예제 #2
0
 public ISqlDefinitionBuilder StartBlock(string name)
 {
     root.StartBlock(name);
     return(this);
 }