Skip to content

Data Modeling

Entity modeling in the DynamoDB EF Core provider extends standard EF Core conventions with DynamoDB-specific configuration for partition keys, sort keys, secondary indexes, and complex properties.

This section covers how to define your model and how the provider maps it to DynamoDB's data structures. EF Core foreign-key and navigation relationships are not supported: use complex types for embedded data, and separate root entities for separate DynamoDB items or tables.

See also