MapsterMapper / Mapster

A fast, fun and stimulating object to object Mapper
MIT License
4.3k stars 328 forks source link

Queryable Extensions fails with async #509

Closed cherchyk closed 1 year ago

cherchyk commented 1 year ago
[HttpGet]

public async Task<ActionResult<IEnumerable<DTO_T>>> GetRecords()
{
var result_T = await _context.Set<T>().AsNoTracking().Where(o => o.TenantId == RequestTenantId).ProjectToType<DTO_T>();

return null;
}
image
felaray commented 1 year ago

it's work for me image