DynamoDB.Net 1.0.0-rc-final

This is a prerelease version of DynamoDB.Net.
dotnet add package DynamoDB.Net --version 1.0.0-rc-final
NuGet\Install-Package DynamoDB.Net -Version 1.0.0-rc-final
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DynamoDB.Net" Version="1.0.0-rc-final" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DynamoDB.Net --version 1.0.0-rc-final
#r "nuget: DynamoDB.Net, 1.0.0-rc-final"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DynamoDB.Net as a Cake Addin
#addin nuget:?package=DynamoDB.Net&version=1.0.0-rc-final&prerelease

// Install DynamoDB.Net as a Cake Tool
#tool nuget:?package=DynamoDB.Net&version=1.0.0-rc-final&prerelease

DynamoDB.Net

Easy to use and performant DynamoDB libary for .NET Core

1.0.0

I created the library back in 2016 as an alternative to the "high level" AWS SDK DynamoDB library that in my opionion was lacking in developer experience, no high level support for query/scan filters, reflection based (slow) serialization etc.

Because of lack of time to invest in creating documentation and adding a test suite I haven't gotten around to publish it as open source on GitHub and making the binaries available on NuGet.

TODO

  • Add XML documention for all public classes and members
  • Add simple "Getting started" guide.

Run Tests

# Start local DynamoDB server
docker run -p 8000:8000 amazon/dynamodb-local

# Run tests
dotnet test \
    tests/DynamoDB.Net.Tests.csproj \
    /p:CollectCoverage=true \
    /p:CoverletOutputFormat=cobertura \
    /p:CoverletOutput=.coverage/cobertura.xml

# Create code coverage report
reportgenerator \
    -reporttypes:Html \
    -reports:tests/.coverage/cobertura.xml \
    -targetdir:tests/.coverage \
    -filefilters:'-*.g.cs'

# Open code coverage report
open tests/.coverage/index.html
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-rc-final 57 4/15/2024
1.0.0-rc-9 48 4/10/2024
1.0.0-rc-8 52 4/10/2024
1.0.0-rc-13 44 4/14/2024
1.0.0-rc-12 62 4/14/2024
1.0.0-rc-11 44 4/13/2024
1.0.0-rc-10 40 4/12/2024