Base solution for your next web application

Activities of "mmukkara"

Anyone looking into this post...This post was not getting listed in the support list not sure why.

When 6.3.1 is dowloaded I get "Virus detected" in Windows defender. When I open the windows defender, I see this is related to Trojan:Win32/Cloxer.D!cl

As per this article I am not sure, I can take the copy of 6.3.1.
https://quickremovevirus.com/how-to-remove-trojanwin32-cloxer-dcl-solved/

Please clean it up so that we can feel safe to download the file.

PS: Previous post with the same subject was closed by the person who raised the issue. But, i am concerned with the issue.

Thanks

same here...I got the same message "virus detected" by Windows Defender. Unable to download 6.3.1

Thanks @aaron for the pointers.

Hi @ismcagdas ,

Do you have sample project on implementation of event bus?

Thanks

I thnk it is due to the project name change in the download page. It used to be Company name and project name as seperate fields. Now, it is combined. When the project is generated with actual MyCompanyName.ProjectName, the files/classes which used to be with project name are renamed to actual MyCompanyName.ProjectName which is causing the problem.

This is what my parameters

One of the file it generated is like this...many more fiiles like below.

namespace InsureIT.Jasper
{
    public class InsureIT.JasperConsts
    {
        public const string LocalizationSourceName = "InsureIT.Jasper";

        public const string ConnectionStringName = "Default";

        public const bool MultiTenancyEnabled = true;

        public const int PaymentCacheDurationInMinutes = 30;
    }
}

I could download with myCompany.ProjectName but I cannot compile as it uses namespace myCompany.ProjectName but class name is changed to myCompany.ClassName. I get an error "The name myCompany.filename doesn't exisit in current context" . All the files which used to start with ProjectName are not converted properly and shows in errorlist.

Hi aaron,

I have custom mapping for id and dependent

configuration.CreateMap<DependentEnrolmentRuleCreateInputDto, DependentEnrolmentRule>() .ForMember(d => d.Id, options => options.MapFrom(s => s.Dependent)) .ForMember(u => u.BenefitEnrolmentRule, options => options.Ignore());

[edited]

Hi Aaron,

Thanks for the quick response. **For the first suggestion I get following error **

_Abp.Domain.Uow.AbpDbConcurrencyException: Database operation expected to affect 1 row(s) but actually affected 0 row(s). Data may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=527962 for information on understanding and handling optimistic concurrency exceptions. ---> Microsoft.EntityFrameworkCore.DbUpdateConcurrencyException: Database operation expected to affect 1 row(s) but actually affected 0 row(s). Data may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=527962 for information on understanding and handling optimistic concurrency exceptions.

In SQL profile, I see only update for BenefitEnrolmentRule. no update statements for DependentEnrolmentRules .

For the second suggestion, I get the following error

An error occurred while updating the entries. See the inner exception for details.
Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while updating the entries. See the inner exception for details. ---> System.Data.SqlClient.SqlException: Violation of PRIMARY KEY constraint 'PK_DEPENDENTENROLMENTRULE'. Cannot insert duplicate key in object 'dbo.DependentEnrolmentRule'. The duplicate key value is (2, 32, 1).

In the SQL profiler... I see Update for BenefitEnrolmentRule and insert for DependentEnrolmentRules instead of update for DependentEnrolmentRules.

For the third suggestion, no error. But In SQL profile, I see only update for BenefitEnrolmentRule. no update statements for DependentEnrolmentRules .

Thanks

Showing 11 to 20 of 74 entries