Yes, I got it. Thanks.
Hello @ismcagdas , Thanks for help. Could you please guide us a specific steps to add a migration for project and how can I proceed to update a database?
Hi, I am facing issue that the downloaded latest project from ASP .Net Zero has already package.json updated to latest angular version 12.0 so do we directly need to use that package.json or do we need to update angular/cli and angular/core version by version
In that could you please assist us that what steps should we follow?
The downloaded latest project from ASP .Net Zero has already package.json updated to latest angular version 12.0 so do we directly need to use that package.json or do we need to update angular/cli and angular/core version by version
We have already referred these steps ( https://docs.aspnetzero.com/en/common/latest/Version-Updating). we need version specific steps of Asp .Net Zero(7.2.0 to 11.0.0) if any?
The website is hosted on premise in IIS.
Thank you for the prompt reply. We will implement in the above suggested way.
Hi,
Our implementation is pretty much straightforward.
foreach (var item in .selections)
{
var segmentSelection = ObjectMapper.Map<SegmentSelection>(item);
// Some data manipulation/processing
await _segmentSelectionRepository.InsertAsync(segmentSelection);
}
await CurrentUnitOfWork.SaveChangesAsync();
Doing so sequence is getting distorted in sql table and if we move CurrentUnitOfWork.SaveChangesAsync() inside the for loop it's taking a performance hit.