Mark Lockett

Results 10 comments of Mark Lockett

I have proposed a PR to fixed this issue https://github.com/EOSEssentials/Scatter/pull/75

@loic-sharma Azure Web Apps no longer support .Net Core 3.1 so the fact that this project is stuck on this version is preventing us from updating your infrastructure right now....

Would have helped with https://github.com/mlockett42/litedb-async/issues/30

It is possible I think I saw your question on the main LiteDb project. Do you have an example of the code you want to implement? Like an example of...

I have had a look at this. This is how I think it works from a couple of hours of reading the code. Seems pretty complex to implement but may...

Going to work on another feature in LiteDb.Async before coming back to this one

BeginTransactionAsync creates a new database object which contains the transaction. Try the following - ``` var db = new LiteDatabaseAsync("litedbDemo.db"); try { var trans = await db.BeginTransactionAsync(); var col =...

At first I thought this might be because it was not cleaning up the global state correctly when Dispose() was called. But that is tested here https://github.com/mlockett42/litedb-async/blob/v0.1.7/LiteDBAsyncTest/BackgroundThreadTest.cs#L15 I think it...