Dapper.EntityFramework.Extensions
Dapper.EntityFramework.Extensions copied to clipboard
Include entities
Hi, I try to perform a simple query with this extension but I cannot load the related entities in my query
var bookings = uow.Context.BookingRequests
.Include(x => x.PriceRange)
.Where(x => x.IsExecuted == true)
.ToDapper();
The result is a IEnumerable of BookingRequests with the Id of PriceRange entity filled but not the related entity PriceRange.
Is correct this behavior?