I have 'List GridData { get; set; }' and ''
In method 'OnInitialized' i do 'GridData = await _dbContext.Users..Include(au => au.Roles).ToListAsync();'
Why in method 'BatchSave' when i doing '_dbContext.SaveChangesAsync()' - '_dbContext.ChangeTracker' not have changes?
What kind of stupid logic is this???
I will immediately note that the example you gave of "Creating a Data Access Layer" is absolutely useless, since there is no need to create separate repositories for DbContext.