I have a question want to ask about AsNoTracking() method of EF I've write code:
await _context.Company.AsNoTracking().ToListAsync();
My purpose is want to this code will return an list, with AsNoTracking() is make EF doesn't track it, because list is read-only But, my Leader said remove "AsNoTracking()" because it is redundant. So, maybe i wrong understand, i hope you help me understand about it Thank