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
conststringexpectedSql="select [Customer].* from [Customer] join [Orders] on ([Customer].[CustomerId] = [Orders].[CustomerId]) where [Orders].[OrderDate] = @p1";
34
34
35
35
// Act
@@ -59,7 +59,7 @@ public void NaturalJoinWithShoutyCaseCreatesCorrectCommand()
59
59
{
60
60
// Arrange
61
61
dynamicdatabase=CreateDatabaseWithShoutyNames();
62
-
DateTimeorderDate=newDateTime(2010,1,1);
62
+
varorderDate=newDateTime(2010,1,1);
63
63
conststringexpectedSql="select [CUSTOMER].* from [CUSTOMER] join [ORDER] on ([CUSTOMER].[CUSTOMER_ID] = [ORDER].[CUSTOMER_ID])"
Copy file name to clipboardExpand all lines: Simple.Data.IntegrationTest/NaturalJoinTest.cs
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,8 @@ public void NaturalJoinCreatesCorrectCommand()
29
29
{
30
30
// Arrange
31
31
dynamicdatabase=CreateDatabase();
32
-
DateTimeorderDate=newDateTime(2010,1,1);
33
-
varexpectedSql=
34
-
"select [Customer].* from [Customer] join [Orders] on ([Customer].[CustomerId] = [Orders].[CustomerId]) where [Orders].[OrderDate] = @p1";
32
+
varorderDate=newDateTime(2010,1,1);
33
+
conststringexpectedSql="select [Customer].* from [Customer] join [Orders] on ([Customer].[CustomerId] = [Orders].[CustomerId]) where [Orders].[OrderDate] = @p1";
Copy file name to clipboardExpand all lines: Simple.Data.Mocking/Ado/MockDataReader.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,7 @@ public override char GetChar(int ordinal)
145
145
}
146
146
147
147
/// <summary>
148
-
/// Reads a stream of characters from the specified column, starting at location indicated by <paramref name="dataIndex"/>, into the buffer, starting at the location indicated by <paramref name="bufferIndex"/>.
148
+
/// Reads a stream of characters from the specified column, starting at location indicated by <paramref name="dataOffset"/>, into the buffer, starting at the location indicated by <paramref name="bufferOffset"/>.
0 commit comments