You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Diagnostic(DapperAnalyzer.Diagnostics.ParseError).WithLocation(3).WithArguments(46030,"Expected but did not find a closing quotation mark after the character string ' verify this too.")
using var conn = new {{@namespace}}.SqlConnection("my connection string here");
235
+
using var cmd = new {{@namespace}}.SqlCommand("should {|#0:|}' verify this too", conn);
236
+
cmd.ExecuteNonQuery();
237
+
}
238
+
}
239
+
"""",[],[Diagnostic(DapperAnalyzer.Diagnostics.ParseError).WithLocation(0).WithArguments(46030,"Expected but did not find a closing quotation mark after the character string ' verify this too.")],SqlSyntax.General,refDapperAot:false);
"""",[],[Diagnostic(DapperAnalyzer.Diagnostics.ParseError).WithLocation(0).WithArguments(46030,"Expected but did not find a closing quotation mark after the character string ' verify this too.")],SqlSyntax.General,refDapperAot:false);
262
+
222
263
[Fact]
223
264
publicTaskVBSmokeTestVanilla()=>VBVerifyAsync("""
224
265
Imports Dapper
@@ -235,7 +276,7 @@ from Users
235
276
and Age = @age
236
277
and Something = {|#1:null|}", New With {name, .id = 42, .age = 24 })
237
278
238
-
Using cmd As New SqlCommand("should ' verify this too", conn)
279
+
Using cmd As New SqlCommand("should {|#3:|}' verify this too", conn)
Diagnostic(DapperAnalyzer.Diagnostics.ParseError).WithLocation(3).WithArguments(46030,"Expected but did not find a closing quotation mark after the character string ' verify this too.")
0 commit comments