@@ -119,13 +119,14 @@ Will result in the following verified file:
119119 Type: ReaderExecutedAsync,
120120 HasTransaction: false,
121121 Text:
122- SELECT [c].[Id], [c].[Name]
123- FROM [Companies] AS [c]
124- WHERE [c].[Name] = N'Title'
122+ select [c].[Id],
123+ [c].[Name]
124+ from [Companies] as [c]
125+ where [c].[Name] = N'Title'
125126 }
126127}
127128```
128- <sup ><a href =' /src/Verify.EntityFramework.Tests/CoreTests.RecordingTest.verified.txt#L1-L10 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-CoreTests.RecordingTest.verified.txt ' title =' Start of snippet ' >anchor</a ></sup >
129+ <sup ><a href =' /src/Verify.EntityFramework.Tests/CoreTests.RecordingTest.verified.txt#L1-L11 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-CoreTests.RecordingTest.verified.txt ' title =' Start of snippet ' >anchor</a ></sup >
129130<!-- endSnippet -->
130131
131132
@@ -205,23 +206,26 @@ await Verify();
205206 @p1 (String): Title
206207 },
207208 Text:
208- SET IMPLICIT_TRANSACTIONS OFF;
209- SET NOCOUNT ON;
210- INSERT INTO [Companies] ([Id], [Name])
211- VALUES (@p0, @p1);
209+ set implicit_transactions off;
210+
211+ set nocount on;
212+
213+ insert into [Companies] ([Id], [Name])
214+ values (@p0, @p1)
212215 },
213216 {
214217 Type: ReaderExecutedAsync,
215218 HasTransaction: false,
216219 Text:
217- SELECT [c].[Id], [c].[Name]
218- FROM [Companies] AS [c]
219- WHERE [c].[Name] = N'Title'
220+ select [c].[Id],
221+ [c].[Name]
222+ from [Companies] as [c]
223+ where [c].[Name] = N'Title'
220224 }
221225 ]
222226}
223227```
224- <sup ><a href =' /src/Verify.EntityFramework.Tests/CoreTests.MultiDbContexts.verified.txt#L1-L25 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-CoreTests.MultiDbContexts.verified.txt ' title =' Start of snippet ' >anchor</a ></sup >
228+ <sup ><a href =' /src/Verify.EntityFramework.Tests/CoreTests.MultiDbContexts.verified.txt#L1-L28 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-CoreTests.MultiDbContexts.verified.txt ' title =' Start of snippet ' >anchor</a ></sup >
225229<!-- endSnippet -->
226230
227231
@@ -262,13 +266,14 @@ await Verify();
262266 Type: ReaderExecutedAsync,
263267 HasTransaction: false,
264268 Text:
265- SELECT [c].[Id], [c].[Name]
266- FROM [Companies] AS [c]
267- WHERE [c].[Name] = N'Title'
269+ select [c].[Id],
270+ [c].[Name]
271+ from [Companies] as [c]
272+ where [c].[Name] = N'Title'
268273 }
269274}
270275```
271- <sup ><a href =' /src/Verify.EntityFramework.Tests/CoreTests.RecordingDisabledTest.verified.txt#L1-L10 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-CoreTests.RecordingDisabledTest.verified.txt ' title =' Start of snippet ' >anchor</a ></sup >
276+ <sup ><a href =' /src/Verify.EntityFramework.Tests/CoreTests.RecordingDisabledTest.verified.txt#L1-L11 ' title =' Snippet source file ' >snippet source</a > | <a href =' #snippet-CoreTests.RecordingDisabledTest.verified.txt ' title =' Start of snippet ' >anchor</a ></sup >
272277<!-- endSnippet -->
273278
274279
0 commit comments