Activities of "abpVAndy"

Thanks @Sturla you sharing with me some ideas.

1, From I understanding, yes, we can mix domian. 2, mixing domain, the mixing code should be in DomainService, like xxxManager, instead of ApplicationService 3, For mixing domian, yes, I think your method is the only way, multiple calling "insert" of different domain. 4, Or use distribute event method.

I hope ABP Master could give us more detail ideas about it. Mix Domain is common scenario and what options we could select???

For Navigation property, I see their example code, all use below method, add nativation property in existing class. But ABP Suite create additional entity for it. Not know why it create additional entity???

public class Order : FullAuditedAggregateRoot<Guid>, IMultiTenant { public virtual ICollection<OrderLine> OrderLines { get; set; } }

public class OrderLine : FullAuditedEntity<Guid>, IMultiTenant { public virtual Product Product { get; set; } }

Any ideas? Need Help.

Thx

  • ABP Framework version: v4.3.1
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • Steps to reproduce the issue:

Hi,

I created navigation property by abp suite. It created additional entity named: xxxWithNavigationProperties

I have some confusion about it. Why use this way for navigation property? Why not use as commercial examples: easy-crm

public class Order : FullAuditedAggregateRoot<Guid>, IMultiTenant
{ 
    public virtual ICollection<OrderLine> OrderLines { get; set; }
}

public class OrderLine : FullAuditedEntity<Guid>, IMultiTenant
{ 
    public virtual Product Product { get; set; }
}

Could you please give me some hint or idea? Where I could get the introduction or information about it? As I see the source code related to navigation property, all use as easy-crm way.

Thx

He want to know his code design is good or not or have any other suggetions about his code? Am I right?

I am also has some confuse about the navigation property.

I use abp suite to create navigation property, it create additional entity named: xxxWithNavigationProperties And I cannot find any code or description about it xxxWithNavigationProperties. No find in commercial examples: easy-crm and bookstore-angular-mongodb

Dose it has some docs about xxxWithNavigationProperties?

thx

The Navigation Property created by Abp Suite, will created another entity named xxxWithNavigationProperties??

Abp Suite will not create navigation property in the existing entity?

thx

  • ABP Framework version: v4.30
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes
  • Exception message and stack trace:
  • Steps to reproduce the issue:

Is there any way I could new user only with Username and Password? UI and back code. I donot need email when new user.

I check Volo.Abp.Identity, and see the [Required] in here: IdentityUserCreateOrUpdateDtoBase

Thanks

Will commercial have Angular Public Website? Right now, it only have MVC for Public Website?

Thx

It seems the setting cannot customise? Could the commercial UI do this?

1, in the service, we add some settings: context.Add(new SettingDefinition(NnnMallSettings.MySetting1, "good", isVisibleToClients: true)); context.Add(new SettingDefinition(NnnMallSettings.MySetting2, "hello world", isVisibleToClients: true));

2, Could these settings be display in the UI? Angular

3, Could these settings be customise by user, input value/dropdownlist??

Thx

Thanks your reply.

Duplicate.

I create another item. and maliming has reply to me. https://support.abp.io/QA/Questions/1194/different-Commercial-level-has-diff-Tenant-class-And-Phone-registration

Resolved.

Thanks,

Showing 91 to 100 of 107 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11