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 14211a6 commit ac579b0Copy full SHA for ac579b0
src/CommunityToolkit.Aspire.Microsoft.Data.Sqlite/AspireSqliteExtensions.cs
@@ -102,8 +102,7 @@ private static void RegisterSqliteServices(
102
SqliteConnection CreateConnection(IServiceProvider sp, object? key)
103
{
104
ConnectionStringValidation.ValidateConnectionString(settings.ConnectionString, connectionName, DefaultConfigSectionName);
105
- var connection = new SqliteConnection(settings.ConnectionString);
106
- return connection;
+ return new SqliteConnection(settings.ConnectionString);
107
}
108
109
0 commit comments