Skip to content

Commit 8b4137b

Browse files
committed
Corrected name of LastUpdated parameter in connection string tester.
1 parent 487d897 commit 8b4137b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TeamCoding/VisualStudio/Models/ChangePersisters/SqlServerPersister/SqlConnectionWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public static async Task<string> GetConnectionStringErrorTextAsync(string connec
8989

9090
try
9191
{
92-
if(con.Execute(MergeQuery, new { Id = id, Model = (byte[])null, DateTime.UtcNow }) != 1)
92+
if(con.Execute(MergeQuery, new { Id = id, Model = (byte[])null, LastUpdated = DateTime.UtcNow }) != 1)
9393
{
9494
return "Failed to create an entry in the table; execute command didn't add a single row";
9595
}

0 commit comments

Comments
 (0)