Evgeniy Fetisov
Evgeniy Fetisov
Please create ability to map hidden collections as in native mapping by code (Set("ProtectedList")) Or possibility to add mappingByCode mappings to FluentConfiguration OneToMany and ManyToMany
How to set foregn key in map Join? ``` var joinTable="Category" Join(joinTable, j => { j.Optional(); j.KeyColumn("Id"); j.Map(p => p.CategoryName).Column("Name"); }); ``` I think must be: ``` var joinTable="Category"; var...
Microsoft.Extensions.DependencyInjection not supports lazy service registration, but in this case that would be useful. Do you have any ideas, how to solve this issue
Example: 
Whe i use Optimized DbContext: `dotnet ef dbcontext optimize --context MainDbContext` Postgresql array functions cannot translate to sql:  I tried to use many funtions from documentation https://www.npgsql.org/efcore/mapping/array.html. Works only...
Is it possible to add pipeline behaviors (or preprocessors and postprocessors) to wrap listeners, when it needed? It useful to add validation or security check before run listener function It...
Create API in Remote.Linq.EntityFrameworkCore to get query result without mapping to DynamicObject
Hello/ Thanks for great lib. Can you add API in `Remote.Linq.EntityFrameworkCore` to get query result without mapping to `DynamicObject`? In my case i need to handle query result before send...
unfortunately, the validator does not allow the `enum` type in the json schema. ``` "contacts": { "type": "array", "items": { "type": "object", "properties": { "description": { "type": "string" }, "is_main":...