Mikhail Umnov
Mikhail Umnov
Hi, I've tried using this lib (indirectly via https://github.com/David-Desmaisons/RateLimiter) in .NET Core 3.0 app recently, but as soon as I add the reference to ComposableAsync.Core NuGet package, the `dotnet build`...
var table = l2dd.GetTable(); var utcNow = DateTime.UtcNow; var newRecord = new TestRecord { ByMinutePartition = StripToMinutes(utcNow), ExactTime = utcNow, Id = Guid.NewGuid() }; table.InsertOnSubmit(newRecord); l2dd.SubmitChanges(); var e = table.FirstOrDefault(record...
Would be nice to support custom TableLock storages and remove runtime-error when calling table.AcquireTableLock without cache implementation. The cases should be as follows: - No caching is required for record...
DynamoDb.DataModel's [DynamoDBVersion] attribute is used for Optimistic locking. Not only it can be used for Update operations, but also for Delete as well (throwing exception if record was modified/no longer...