public void Finished() { Result = new PreparedCommand(_sb.ToString(), _parameters); _sb.Clear(); _sb = null; }
public static PreparedCommand Store <T>(int idx, PreparedCommand c) => PreparedCommandCache <T> .Set(idx, c);
public static PreparedCommand Set(int idx, PreparedCommand c) { PreparedCommands[idx] = c; return(c); }