You should remove every file and then extract the contents into an empty folder.
The documentation clearly says:
No entities are automatically tracked by default. You should configure entities either by using the startup configuration or via attributes.
The recommended way is git. How it would not have been caught?
Resolve using context.IocResolver
.
Build the Migrator project.
See Migrator Console Application in https://docs.aspnetzero.com/documents/zero/latest/Development-Guide-Core.
Answered in this SO question:
<blockquote>
This is the default behaviour of ASP.NET (Core) Identity.
You can do the following to disable validation.
IdentityRegistrar.cs:
return services.AddAbpIdentity<Tenant, User, Role>(options =>
{
options.User.AllowedUserNameCharacters = null;
})
UserManager.cs:
(UserValidator as Microsoft.AspNet.Identity.UserValidator<User, long>)
.AllowOnlyAlphanumericUserNames = false;
</blockquote>
It is set by convention.
public class SubscriptionPayment : FullAuditedEntity<long>
{
public int EditionId { get; set; }
public Edition Edition { get; set; }
// ...
}
Reference: https://docs.microsoft.com/en-us/ef/core/modeling/relationships#conventions
Did you subscribe? See https://github.com/aspnetboilerplate/aspnetboilerplate/issues/2135.
Possible duplicate of https://support.aspnetzero.com/QA/Questions/5824