namespace TheAgileWorkshop.SQLiteWithSchemaSupport { public class CommandTextParser { public string ParseCommandText(string text) { if (!text.Contains(".")) return text; text = text.Replace("_.", "_$"); text = text.Replace(".", "_"); text = text.Replace("_$", "_."); return text; } } }