Detached-Mapper
Detached-Mapper copied to clipboard
An ORM friendly mapper. Allows saving entire entity graphs. Heavily inspired in GraphDiff and AutoMapper.
Hi ## Premise: I have a situation where I'm using a [ValueConverter ](https://docs.microsoft.com/en-us/ef/core/modeling/value-conversions?tabs=data-annotations)to map a property with a complex type to a simple string in the database. This is how...
Hi Leonardo ;), How are you? I hope you doing well ;). We made huge progress and everything is working really good ;). Last Friday we sadly hit a new...
Hi, thanks for great library! I wanted to ask because I don't see any example of that - is this library supports something similar to AutoMapper's CreateMap? By that I...
Hello Leonardo, We ([Robert](https://github.com/Robert-INdotNET) and I) have been working diligently with detached mappers again and found a very tricky bug. Detached mappers can't cope with two models, one nested and...
I usually define collections in my entities with a getter only like this: ```C# public class GroupReservation { [Key] public int Id { get; set; } public string? Reference {...
I am using your package for long time. Recently, I update all the packages (yours and EntityFramework as well) and I cannot use _dbContext.MapAsync() function. I have the following error...
``` var products = _context.Project(_context.Products .Include(x => x.Customers.Where(x => x.CustomerId == parameters.CustomerId))); ``` I wonder if there is a way to do what i want to do. Because due to...