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
{{ message }}
This repository was archived by the owner on Jun 28, 2023. It is now read-only.
Maps a class property to the sort key of a global secondary index\. Use this attribute if you need to `Query` a global secondary index and want to refine your results using the index sort key\.
Indicates that the associated property should be ignored\. If you don't want to save any of your class properties, you can add this attribute to instruct `DynamoDBContext` not to include this property when saving objects to the table\.
Maps a class property to the sort key of a local secondary index\. Use this attribute if you need to `Query` a local secondary index and want to refine your results using the index sort key\.
Maps a class property to a table attribute\. If the class property maps to a table attribute of the same name, you don't need to specify this attribute\. However, if the names are not the same, you can use this tag to provide the mapping\. In the following C\# statement, the `DynamoDBProperty` maps the `BookAuthors` property to the `Authors` attribute in the table\.
Specifies an alternative name for a class property\. This is useful if you are writing a custom converter for mapping arbitrary data to a DynamoDB table where the name of a class property is different from a table attribute\.
Maps a class property to the sort key of the table's primary key\. If the table has a composite primary key \(partition key and sort key\), you must specify both the `DynamoDBHashKey` and `DynamoDBRangeKey` attributes in your class mapping\.
Identifies the target table in DynamoDB to which the class maps\. For example, the following C\# code example maps the `Developer` class to the `People` table in DynamoDB\.
77
77
@@ -100,6 +100,6 @@ public class Developer {
100
100
101
101
When saving instances of the `Developer` class, `DynamoDBContext` saves the `DeveloperName` property as the `developerName`\.
Identifies a class property for storing the item version number\. For more information about versioning, see [Optimistic Locking Using a Version Number with DynamoDB Using the AWS SDK for \.NET Object Persistence Model](DynamoDBContext.VersionSupport.md)\.
0 commit comments