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.
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.
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: