We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1c5d73 commit 989c7e2Copy full SHA for 989c7e2
1 file changed
QueryTemplates.cs
@@ -6,7 +6,7 @@ namespace DbSyncKit.Templates.MySql
6
/// <summary>
7
/// Implementation of <see cref="IQueryTemplates"/> for MySQL database, providing templates for various SQL queries.
8
/// </summary>
9
- public class QueryTemplates : IQueryTemplates
+ public class QueryTemplates : IQueryTemplates, IDisposable
10
{
11
#region Public Properties
12
@@ -105,6 +105,15 @@ private static IFluidTemplate CreateCommentQueryTemplate()
105
106
return parser.Parse(str);
107
}
108
+
109
+ /// <summary>
110
+ /// Performs application-defined tasks associated with freeing, releasing, or resetting resources.
111
+ /// </summary>
112
+ public void Dispose()
113
+ {
114
+ // No additional resources to release.
115
+ }
116
117
#endregion
118
119
0 commit comments