It's Friday refactor time!!!
I have an object that I use to generate SQL statements.
oDb.From is set once. Then meta data may add join(s) over time till we combine it all and pass it back.
So the Q is, What # of times do I keep syntax oDb.From += before I replace it with sbFrom.Append()
Is that # 3, 4, or 15 times?
Or is it really a length of content issue, and if so what is the magical #?
TIA