Alexey Fadeev
Alexey Fadeev
I need help in building JsQuery extension for Windows to use with PostgreSQL 9.4 for Windows.
@jayralencar , hello! Shared cache for In-memory databases support was merged in July 2021. Do you have a plan to build a new version of npm package with this changes?...
### Exception on using Sql.Expression method Hello. I created extension method: ```c# [Sql.Expression("{point1} {point2}", ServerSideOnly = true)] public static double Distance([ExprParameter] NpgsqlPoint point1, [ExprParameter] NpgsqlPoint point2) => throw new NotImplementedException();...
We use build of V8 (via v8-cmake) for building [PLV8](https://github.com/plv8/plv8) (extension for PostgreSQL, V8 binary is linked on PLV8 building). After upgrade v8-cmake to V8 11.6 we faced with a...
### Description CreateLinqToDBContext extension method checks context.Database.CurrentTransaction property. When BeginTransaction method is used it works well, because context.Database.CurrentTransaction contains wrapper for DbTransaction, and LINQ to DB reuses it. When TransactionScope...
v8-cmake was upgraded to cpp20. cpp20 is needed to build v8 11.6 with v8-cmake Tested with PostgreSQL 17 on Debian and Aplpine.
I created such script to disable key-repeat for specific key: ``` { "manipulators": [ { "from": { "key_code": "v" }, "to": { "key_code": "v", "repeat": false }, "type": "basic" }...