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
// TODO: The following translation is sub-optimal: we should be using OPENSJON to extract elements of the collection as JSON elements (OPENJSON WITH JSON),
159
-
// and comparison those elements to a single entire JSON fragment on the other side (just like non-collection JSON comparison), rather than breaking the
160
-
// elements down to their columns and doing column-by-column comparison. See #32576.
161
-
AssertSql(
162
-
"""
153
+
awaitbase.Contains_with_inline();
154
+
155
+
// TODO: The following translation is sub-optimal: we should be using OPENSJON to extract elements of the collection as JSON elements (OPENJSON WITH JSON),
156
+
// and comparison those elements to a single entire JSON fragment on the other side (just like non-collection JSON comparison), rather than breaking the
157
+
// elements down to their columns and doing column-by-column comparison. See #32576.
// TODO: The following translation is sub-optimal: we should be using OPENSJON to extract elements of the collection as JSON elements (OPENJSON WITH JSON),
187
-
// and comparison those elements to a single entire JSON fragment on the other side (just like non-collection JSON comparison), rather than breaking the
188
-
// elements down to their columns and doing column-by-column comparison. See #32576.
189
-
AssertSql(
190
-
"""
177
+
awaitbase.Contains_with_parameter();
178
+
179
+
// TODO: The following translation is sub-optimal: we should be using OPENSJON to extract elements of the collection as JSON elements (OPENJSON WITH JSON),
180
+
// and comparison those elements to a single entire JSON fragment on the other side (just like non-collection JSON comparison), rather than breaking the
181
+
// elements down to their columns and doing column-by-column comparison. See #32576.
@@ -207,18 +200,14 @@ FROM ROWS FROM (jsonb_to_recordset(r."RequiredAssociate" -> 'NestedCollection')
207
200
)) WITH ORDINALITY AS n
208
201
WHERE n."Id" = @entity_equality_nested_Id AND n."Int" = @entity_equality_nested_Int AND n."Ints" = @entity_equality_nested_Ints AND n."Name" = @entity_equality_nested_Name AND n."String" = @entity_equality_nested_String)
@@ -239,18 +228,14 @@ FROM ROWS FROM (jsonb_to_recordset(r."RequiredAssociate" -> 'NestedCollection')
239
228
)) WITH ORDINALITY AS n
240
229
WHERE n."Int" > @get_Item_Int AND n."Id" = @entity_equality_get_Item_Id AND n."Int" = @entity_equality_get_Item_Int AND n."Ints" = @entity_equality_get_Item_Ints AND n."Name" = @entity_equality_get_Item_Name AND n."String" = @entity_equality_get_Item_String)
@@ -277,7 +262,6 @@ FROM ROWS FROM (jsonb_to_recordset(r."AssociateCollection") AS (
277
262
)) WITH ORDINALITY AS a
278
263
WHERE a."Id" > @get_Item_Id AND a."Id" = @entity_equality_get_Item_Id AND a."Int" = @entity_equality_get_Item_Int AND a."Ints" = @entity_equality_get_Item_Ints AND a."Name" = @entity_equality_get_Item_Name AND a."String" = @entity_equality_get_Item_String AND (a."NestedCollection") = @entity_equality_get_Item_NestedCollection AND (a."OptionalNestedAssociate") = @entity_equality_get_Item_OptionalNestedAssociate AND (a."RequiredNestedAssociate") = @entity_equality_get_Item_RequiredNestedAssociate)
0 commit comments