File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ namespace DbSyncKit.DB.Factory
1111 /// <summary>
1212 /// Factory class for creating instances of <see cref="IQueryGenerator"/> based on the specified <see cref="DatabaseProvider"/>.
1313 /// </summary>
14- public static class QueryGeneratorFactory
14+ public class QueryGeneratorFactory
1515 {
1616 /// <summary>
1717 /// Gets an instance of <see cref="IQueryGenerator"/> based on the specified <paramref name="provider"/>.
@@ -20,7 +20,7 @@ public static class QueryGeneratorFactory
2020 /// <returns>An instance of <see cref="IQueryGenerator"/> for the specified database provider.</returns>
2121 /// <exception cref="ArgumentException">Thrown if the <paramref name="provider"/> is not supported.</exception>
2222 /// <exception cref="TypeLoadException">Thrown if the type for the specified database provider is not found.</exception>
23- public static IQueryGenerator GetQueryGenerator ( DatabaseProvider provider )
23+ public IQueryGenerator GetQueryGenerator ( DatabaseProvider provider )
2424 {
2525 string namespacePrefix ; // Adjust this to your actual namespace
2626 string className = "QueryGenerator" ;
You can’t perform that action at this time.
0 commit comments