ademchenko
ademchenko
The issue being described is also mentioned in [that](https://github.com/ChilliCream/hotchocolate/issues/2150) task discussion. So, we have a real scenario which is very usual. A user has a big number of fine-grained permissions...
We are going to provide the dynamic query language to our end-users. That causes us to double-check potential pitfalls in security. Since the string presenting the query translated into the...
Suppose we have the following table structure int Postgres: ```sql create table if not exists public.salary ( id integer generated always as identity constraint salary_pk primary key, amount numeric(36, 18)...
### In Postgres Suppose we have the following table: ```sql create table if not exists type_no_nullable_parent ( parent_id integer not null ); ``` The generated code would be: ```C# [Table("type_no_nullable_parent",...
### In Postgres Suppose we have the following table: ```sql CREATE TABLE foos ( b INTEGER NOT NULL ); ``` The generated code would be: ```c# [Table("foos")] public partial class...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Product Hot Chocolate ### Describe the bug Suppose a class has a method...
CUR: No exception on adding several dependencies of one property. See the test AddDependency_MoreThanOneDependencyOnAProperty_NotSupported for details: [Fact] public void AddDependency_MoreThanOneDependencyOnAProperty_NotSupported() { var map = new DependenciesMap(); Assert.Throws(() => map.AddMap(o =>...
CUR: Having dependency on several paths (for example, Price an Quanity) like tracker.Add(o => o.Cost, o => o.Price \* o.Quantity, o => o.Price, o => o.Quantity) tracker calculates and sets...
Dear team! Please look into the quite [serious issue](https://github.com/npgsql/npgsql/issues/4780). Firstly I created that for npgsql but they have checked it and tell that it's the linq2db responsibility. Inside the issue,...