ademchenko

Results 10 issues of 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...

🗣 discussion
🌶️ hot chocolate
Area: Security
📌 pinned

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)...

type: bug

### 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",...

type: bug

### 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...

area: sql
type: bug

### 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...

🎉 enhancement
🌶️ hot chocolate

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 =>...

bug

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...

bug

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,...

type: feature
area: mapping
status: has-tests
provider: postgresql