Commit 8839cfd5 authored by Jeremy Borg's avatar Jeremy Borg

Change access modifier of AddClause method to "protected".

parent 45df8d8d
...@@ -119,9 +119,9 @@ public Template AddTemplate(string sql, dynamic parameters = null) ...@@ -119,9 +119,9 @@ public Template AddTemplate(string sql, dynamic parameters = null)
} }
#if CSHARP30 #if CSHARP30
void AddClause(string name, string sql, object parameters, string joiner, string prefix, string postfix, bool isInclusive) protected void AddClause(string name, string sql, object parameters, string joiner, string prefix, string postfix, bool isInclusive)
#else #else
void AddClause(string name, string sql, object parameters, string joiner, string prefix = "", string postfix = "", bool isInclusive = false) protected void AddClause(string name, string sql, object parameters, string joiner, string prefix = "", string postfix = "", bool isInclusive = false)
#endif #endif
{ {
Clauses clauses; Clauses clauses;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment