From 6a0d217a0842d920cae6914edd20e50b168bafaf Mon Sep 17 00:00:00 2001 From: Robert Andersson Date: Sun, 11 Aug 2024 08:58:04 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0474abe2..70b1e38d 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ The source generator will look for attributes and implement interfaces that exis * GlobalSecondaryIndex ✔ * LocalSecondaryIndex ✔ * Custom Converters: Create converters for your own types or override the [default converters](https://github.com/inputfalken/DynamoDB.SourceGenerator/blob/main/src/DynamoDBGenerator/Options/AttributeValueConverters.cs) built in to the library. +* `ValueTuple` support: You don't have to declare your own types and could instead use tuples with custom named properties that will act as if the tuple was a type with with those properties. ## Conversion From 92914cf0938cf72a08827bc8a5d6dc82c81e25b2 Mon Sep 17 00:00:00 2001 From: Robert Andersson Date: Sun, 11 Aug 2024 09:00:39 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 70b1e38d..9704bd66 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ The source generator will look for attributes and implement interfaces that exis * GlobalSecondaryIndex ✔ * LocalSecondaryIndex ✔ * Custom Converters: Create converters for your own types or override the [default converters](https://github.com/inputfalken/DynamoDB.SourceGenerator/blob/main/src/DynamoDBGenerator/Options/AttributeValueConverters.cs) built in to the library. -* `ValueTuple` support: You don't have to declare your own types and could instead use tuples with custom named properties that will act as if the tuple was a type with with those properties. +* `ValueTuple` support: You don't have to declare your own types and could instead use tuples with custom named fields that will act as if the tuple was a type with with those data members. ## Conversion From 6422540eaa9e59804b9b762515df941ea83285d8 Mon Sep 17 00:00:00 2001 From: Robert Andersson Date: Sun, 11 Aug 2024 09:01:17 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9704bd66..832b55db 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ The source generator will look for attributes and implement interfaces that exis * GlobalSecondaryIndex ✔ * LocalSecondaryIndex ✔ * Custom Converters: Create converters for your own types or override the [default converters](https://github.com/inputfalken/DynamoDB.SourceGenerator/blob/main/src/DynamoDBGenerator/Options/AttributeValueConverters.cs) built in to the library. -* `ValueTuple` support: You don't have to declare your own types and could instead use tuples with custom named fields that will act as if the tuple was a type with with those data members. +* `ValueTuple` support: You don't have to declare your own types and could instead use [tuples](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/value-tuples) with custom named fields that will act as if the tuple was a type with with those data members. ## Conversion