Provides abstractions for creating write sessions and writing to database (defines IDbSessionFactory and IDbSession interfaces).
$ dotnet add package Raiqub.Expressions.WritingProvides abstractions for creating write sessions and writing to database (defines IDbSessionFactory and IDbSession interfaces)
Documentation, and samples, for using Raiqub Expressions can be found in the repository's README and documentation.
Using database session:
// Assuming 'session' is of type IDbSession and has been injected
var blog = new Blog { Url = "https://example.com" };
session.Add(blog);
await session.SaveChangesAsync();
See GitHub Releases for release notes.