Activities of "yuhang.ji@yftech-dl.com"

  • ABP Framework version: v4.2.1
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

  • ABP Framework version: v3.1.0
  • UI type: MVC
  • Tiered (MVC) or Identity Server Seperated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:

The Angular project doesn't have this issue

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

  • ABP Framework version: v3.0.4
  • UI type: MVC
  • Tiered (MVC) or Identity Server Seperated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:

Deleting an org contains member will raise an exception: Entity OrganizationUnit not exist: id = xxxxxxxx

I have to remove all the members from the org, then delete the org.

  • ABP Framework version: v3.0.4
  • UI type: MVC
  • Tiered (MVC) or Identity Server Seperated (Angular): no
  • Exception message and stack trace: N/A
  • Steps to reproduce the issue:

I defined an extension property Birth to the IdentityUser:

ObjectExtensionManager.Instance.Modules()
                .ConfigureIdentity(identity =>
                {
                    identity.ConfigureUser(user =>
                    {
                        user.AddOrUpdateProperty<DateTime?>( 
                            "Birth", 
                            property =>
                            {
                                property.UI.OnTable.IsVisible = false;
                                property.Attributes.Add(new DataTypeAttribute(DataType.Date));
                            }
                        );

                    });
                });

The birth property is optional so I give it DateTime? type.

The create form works well, and I can see the birth value is stored to the DB successfully:

However when I edit the user, I cannot see the birth value:

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