Base solution for your next web application

Activities of "PhilWynn"

Question

I am currently migrating to the current version and am unable to specify the page footer as fixed. I notice that there is a flag, ThemeFooterSettingsDto.FixedFooter, but this has no effect. Have you dropped support for fixed footers?

Regards

Answer

Hi,

I need to get started on this project today. We have recently paid to maintain our support contract with you guys specifically so that I can get som guidance on this. I am only asking for some help on how to get started. Please could you take a few minutes just to point me in the right direction here...

Regards

Answer

Hi,

Any information for me here? Just a starting point would be appreciated...

Regards

Answer

Hi,

There is no help in the link you provided as to how I can update metronic. I would be grateful if you could at least give me a starting point.

  • What version of metronic should I use?
  • I assume I still have free access to their repo with my AspNetZero subscription? How do I access this?
  • What options are available to me?

Regards

Question

Hi, We are using a very old version of AspnetZero (v4 MVC) and have been simply updating the ABP libraries as we go. I have now been tasked with updating the jQuery library to the latest version, and I'm assuming this will mean updating the Metronic version as well. Could you please give me some help as to how I can approach this task.

Many thanks Phil

Hi,

Thanks for the info. Would you be able to let me know at this stage what the problems we may encounder are?

Regards, Phil

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

Aspnet.Zero v4 MVC .net framework

If issue related with ABP Framework

v6.3

Hi, we have been running our application on Aspnet.zero .net MVC (jQuery) for several years. We started on v4 and have updated the ABP libraries up to v6.3

We are now in a position where we would like to migrate the project to the latest Aspnet.Zero Core (jQery) version. At this stage, I am interested in any documentation that exists for this process, and any resources that could be made available to us.

Many thanks.

Hi, Yes, this seems to have been the cause. Many thanks.

I am finding that the hashcode depends on how the entity was retrieved. The following code was working fine on v4.3 and no longer works on v5.14:

 var selected = await _reportConfigurationColumnManager.GetConfigurationColumns()
                .AsNoTracking()
                .Where(c => c.ReportConfigurationTab.ReportConfigurationId == input.ConfigurationId)
                .Select(c => c.EmployeeDetail)
                .ToListAsync();

            var all = await _employeeDetailManager.GetAuthorizedEmployeeDetails()
                .AsNoTracking()
                .ToListAsync();

            return all.Except(selected).Select(ed => new ColumnListBoxItem
            {
                Type = ConfigurableReportColumnType.EmployeeDetail,
                Name = ed.TranslatedName,
                EmployeeDetailId = ed.Id
            }).OrderBy(i => i.Name);

For v5.14 I am alwasy getting the full "all" collection, as entity equality seems to have broken. If I override Equals and GetHashCode on the entity, then the code works again.

Note, however, that overriding Equals and GetHashCode is not a viable solution for me, as I would need to do this across the board for many entities.

Something has changed in ABP between these 2 versions to cause the entity equality to break.

Regards

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • v4.0
  • MVC
  • .Net

If issue related with ABP Framework

  • 5.14

Hi, I have recently upgraded from ABP v4.3 to v5.14. I am now finding that I am getting the following discrepencies on GetHashCode for my Enity objects:

` // 10171594 var empdet = (await _employeeDetailManager.EmployeeDetails.SingleAsync(e => e.Id == 42)).GetHashCode();

// 59790523 var empdet5 = (await _employeeDetailManager .EmployeeDetails .AsNoTracking() .FirstAsync(e => e.Id == 42)).GetHashCode();

` This is causing me many issues, as it has broken all code that performs comarrisons between entities. All my entities inherit from base class FullAuditedEntity

Please can you advise as to why I am not getting consistent hash codes, and what I can do to rectify this..?

Many thanks

Showing 1 to 10 of 110 entries