Leonardo Porro

Results 13 comments of Leonardo Porro

I've started something similar here: https://github.com/leonardoporro/EntityFrameworkCore.Detached Feel free to use it if you find it useful.

Try this one https://github.com/leonardoporro/EntityFrameworkCore.Detached.

@Adriien-M Sorry for the late response. I've been working on a new version, that uses DTOs instead of the same entity. So if you have an entity with 2 props...

Hi @PatAmb63, Thanks, I'm glad you found it useful. There was a change in EF, and now it complains if you include base navigations, e.g.: ` dbContext.Include("MyNavigation").Include("MyNavigation.OtherNavigation"); ` Which is...

Hi Patrice, NavigationBaseIncludeIgnored was fixed in 6.2.2. The workaround should not be needed anymore. I'm researching the loop issue.. Tests are greatly appreciated, is there any small piece of code...

Hi @Hau-Hau, Sadly no, at the moment it works mostly by convention. You may post a sample of the scenario you want to support so I could work in a...

Hi @jorgeparavicini, Right now, all properties are set, independently of the collection being recreated or not. Let me check if I can patch it to support this scenario..

Use https://github.com/leonardoporro/Detached-Mapper/tree/main/src/Detached.Mappers.Json as a base to a Bson mapper.

@Hau-Hau started working on profiles. Right now it is possible to ignore or config. as association or composition on a given Type. for example: ` cfg.Type().Member(u => u.Name).Exclude(); ` will...

Added from v7.2.0. Please reopen if you find issues.