public QueryBuilder Select(string value) { string[] fields = value.Split(','); foreach (string field in fields) { SelectInstruction selectInstruction = new SelectInstruction { Field = field }; _queryProcessor.AddSelectInstruction(selectInstruction); } return(this); }
static SelectInstruction() { Singleton = new SelectInstruction(); }
public void AddSelectInstruction(SelectInstruction instruction) { selectInstructions.Add(this.selectInstructionIndex, instruction); this.selectInstructionIndex++; }