Skip to content

Commit 5499a1e

Browse files
committed
WIP
1 parent b0ee3d6 commit 5499a1e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

  • tests/DynamoDBGenerator.SourceGenerator.Benchmarks/Benchmarks/Marshalling/Primitive

tests/DynamoDBGenerator.SourceGenerator.Benchmarks/Benchmarks/Marshalling/Primitive/Benchmarks.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System;
12
using DynamoDBGenerator.Attributes;
23

34
namespace DynamoDBGenerator.SourceGenerator.Benchmarks.Benchmarks.Marshalling.Primitive;
@@ -27,7 +28,7 @@ public partial class Int64() : SG_VS_AWS_Benchmarker<Container<System.Int64>>(
2728
);
2829

2930
[DynamoDBMarshaller(EntityType = typeof(Container<System.String>))]
30-
public partial class String() : SG_VS_AWS_Benchmarker<Container<System.String>>(
31+
public partial class String_() : SG_VS_AWS_Benchmarker<Container<System.String>>(
3132
ContainerMarshaller.Marshall,
3233
ContainerMarshaller.Unmarshall
3334
);
@@ -50,8 +51,8 @@ public partial class Guid() : SG_VS_AWS_Benchmarker<Container<System.Guid>>(
5051
ContainerMarshaller.Unmarshall
5152
);
5253

53-
[DynamoDBMarshaller(EntityType = typeof(Container<DayOfWeek>))]
54-
public partial class Enum() : SG_VS_AWS_Benchmarker<Container<DayOfWeek>>(
54+
[DynamoDBMarshaller(EntityType = typeof(Container<System.DayOfWeek>))]
55+
public partial class Test() : SG_VS_AWS_Benchmarker<Container<System.DayOfWeek>>(
5556
ContainerMarshaller.Marshall,
5657
ContainerMarshaller.Unmarshall
5758
);

0 commit comments

Comments
 (0)