An async ORM built for Amazon Web Service's DynamoDb in .Net Standard This is still in beta
Please don't hesitate to log issues or requests on GitHub. We are working everyday to make this more and more robust to ensure it will help more developers.
The examples below use the local Amazon DynamoDb you would setup on your machine
[DynamoDBTable("People")]
public class PersonModel : Base
{
[DynamoDBHashKey]
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime CreatedDate { get; set; }
}
var config = new AmazonDynamoDBConfig
{
ServiceURL = "http://localhost:8000/"
};
var client = new AmazonDynamoDBClient(config);
var repository = new Repository(client);
var model = new PersonModel();
model.Id = 1;
model.FirstName = "John";
model.LastName = "Smith";
model.CreatedDate = DateTime.Now;
await repository.Add(model);
var entity = await repository.Get<PersonModel>(1);
var model = new PersonModel();
model.Id = 1;
model.FirstName = "John";
model.LastName = "Smith";
model.CreatedDate = DateTime.Now;
await repository.Update(model);
await repository.Delete<PersonModel>(1);
If you don't want to use the Table Name attribute you can provide the Table Name as a parameter on repository Call. Examples of calls made with additional parameter
var model = new PersonModel();
model.Id = 1;
model.FirstName = "John";
model.LastName = "Smith";
model.CreatedDate = DateTime.Now;
await repository.Add(model, "tableName");
await repository.Get<PersonModel>(model.Id, "tableName");
await repository.Get<PersonModel>(x => x.FirstName == "Fake", "tableName");
await repository.List<PersonModel>(x => x.Id < 20 && x.Id >= 10, "tableName");
await repository.Update(model, "tableName");
await repository.Delete(model, "tableName");
Click here to view all the release notes
- Documented the Repository class and interface
- Upgraded dependencies and fixed code to work with newer dependencies
- Fixed typo in README