@@ -265,7 +265,7 @@ public static Dictionary<
265265 int expectedErrors ,
266266 int expectedReferences ,
267267 int expectedReferencedObjects ,
268- IEnumerable < BatchInsertRequest < object > [ ] > data
268+ IEnumerable < BatchInsertRequest [ ] > data
269269 )
270270 > Cases =>
271271 new ( )
@@ -277,11 +277,11 @@ IEnumerable<BatchInsertRequest<object>[]> data
277277 0 ,
278278 [
279279 [
280- BatchInsertRequest . Create < object > (
280+ BatchInsertRequest . Create (
281281 new { Name = "some name" } ,
282282 vectors : Vector . Create ( 1 , 2 , 3 )
283283 ) ,
284- BatchInsertRequest . Create < object > (
284+ BatchInsertRequest . Create (
285285 new { Name = "some other name" } ,
286286 id : _reusableUuids [ 0 ]
287287 ) ,
@@ -295,7 +295,7 @@ IEnumerable<BatchInsertRequest<object>[]> data
295295 0 ,
296296 [
297297 [
298- BatchInsertRequest . Create < object > (
298+ BatchInsertRequest . Create (
299299 new
300300 {
301301 Name = "some name" ,
@@ -314,7 +314,7 @@ IEnumerable<BatchInsertRequest<object>[]> data
314314 0 ,
315315 0 ,
316316 [
317- [ BatchInsertRequest . Create < object > ( new { Name = 1 } ) ] ,
317+ [ BatchInsertRequest . Create ( new { Name = 1 } ) ] ,
318318 ]
319319 ) ,
320320 [ "batch with self-reference" ] = (
@@ -324,25 +324,25 @@ IEnumerable<BatchInsertRequest<object>[]> data
324324 1 ,
325325 [
326326 [
327- BatchInsertRequest . Create < object > (
327+ BatchInsertRequest . Create (
328328 new { Name = "Name 1" } ,
329329 id : _reusableUuids [ 0 ]
330330 ) ,
331- BatchInsertRequest . Create < object > (
331+ BatchInsertRequest . Create (
332332 new { Name = "Name 2" } ,
333333 id : _reusableUuids [ 1 ]
334334 ) ,
335- BatchInsertRequest . Create < object > (
335+ BatchInsertRequest . Create (
336336 new { Name = "Name 3" } ,
337337 id : _reusableUuids [ 2 ]
338338 ) ,
339- BatchInsertRequest . Create < object > (
339+ BatchInsertRequest . Create (
340340 new { Name = "Name 4" } ,
341341 id : _reusableUuids [ 3 ]
342342 ) ,
343343 ] ,
344344 [
345- BatchInsertRequest . Create < object > (
345+ BatchInsertRequest . Create (
346346 new { Name = "Name 5" } ,
347347 references : [ new ( "ref" , _reusableUuids [ 1 ] ) ]
348348 ) ,
@@ -356,25 +356,25 @@ IEnumerable<BatchInsertRequest<object>[]> data
356356 2 ,
357357 [
358358 [
359- BatchInsertRequest . Create < object > (
359+ BatchInsertRequest . Create (
360360 new { Name = "Name 1" } ,
361361 id : _reusableUuids [ 0 ]
362362 ) ,
363- BatchInsertRequest . Create < object > (
363+ BatchInsertRequest . Create (
364364 new { Name = "Name 2" } ,
365365 id : _reusableUuids [ 1 ]
366366 ) ,
367- BatchInsertRequest . Create < object > (
367+ BatchInsertRequest . Create (
368368 new { Name = "Name 3" } ,
369369 id : _reusableUuids [ 2 ]
370370 ) ,
371- BatchInsertRequest . Create < object > (
371+ BatchInsertRequest . Create (
372372 new { Name = "Name 4" } ,
373373 id : _reusableUuids [ 3 ]
374374 ) ,
375375 ] ,
376376 [
377- BatchInsertRequest . Create < object > (
377+ BatchInsertRequest . Create (
378378 new { Name = "Name 5" } ,
379379 references : [ new ( "ref" , _reusableUuids [ 1 ] , _reusableUuids [ 2 ] ) ]
380380 ) ,
@@ -388,33 +388,33 @@ IEnumerable<BatchInsertRequest<object>[]> data
388388 4 ,
389389 [
390390 [
391- BatchInsertRequest . Create < object > (
391+ BatchInsertRequest . Create (
392392 new { Name = "Name 1" } ,
393393 id : _reusableUuids [ 0 ]
394394 ) ,
395- BatchInsertRequest . Create < object > (
395+ BatchInsertRequest . Create (
396396 new { Name = "Name 2" } ,
397397 id : _reusableUuids [ 1 ]
398398 ) ,
399- BatchInsertRequest . Create < object > (
399+ BatchInsertRequest . Create (
400400 new { Name = "Name 3" } ,
401401 id : _reusableUuids [ 2 ]
402402 ) ,
403- BatchInsertRequest . Create < object > (
403+ BatchInsertRequest . Create (
404404 new { Name = "Name 4" } ,
405405 id : _reusableUuids [ 3 ]
406406 ) ,
407407 ] ,
408408 [
409- BatchInsertRequest . Create < object > (
409+ BatchInsertRequest . Create (
410410 new { Name = "Name 5" } ,
411411 references : [ new ( "ref" , _reusableUuids [ 1 ] ) ]
412412 ) ,
413- BatchInsertRequest . Create < object > (
413+ BatchInsertRequest . Create (
414414 new { Name = "Name 6" } ,
415415 references : [ new ( "ref2" , _reusableUuids [ 2 ] ) ]
416416 ) ,
417- BatchInsertRequest . Create < object > (
417+ BatchInsertRequest . Create (
418418 new { Name = "Name 7" } ,
419419 references :
420420 [
0 commit comments