We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f37b34 commit cd23235Copy full SHA for cd23235
nuget/Sqlite_net.SourceGenerator/SQLiteFastColumnSetterGenerator.cs
@@ -377,7 +377,8 @@ static void Execute(
377
foreach (var classInfo in classes) {
378
var fullTypeName = FullTypeName (classInfo);
379
var initName = "Init" + fullTypeName.Replace (".", "_");
380
- sb.AppendLine($" public static void {initName}()");
+ sb.AppendLine($" /// <summary> Init SQLite Fast Column Setters for {fullTypeName}</summary>");
381
+ sb.AppendLine($" private static void {initName}()");
382
sb.AppendLine(" {");
383
foreach (var property in classInfo.Properties) {
384
sb.AppendLine($" SQLiteConnection.RegisterFastColumnSetter(");
0 commit comments