Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "sumitshah"

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?

Hello,

Please find the below screen-shot.

This "Context" object has reference from "Abp.EntityFrameworkCore.Repositories".

We have migrated our angular code from 8.2 t0 9.0Tried to run ng build command for only angular application.But we are getting bunch of errors, attaching screenshot of few of them. Seems it's related to service proxies.Let us know ho we can resolve it.

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.

Showing 21 to 30 of 59 entries