Any updates for this bug?
/// <summary> /// If ParentTenantId is null, then it is associated directly to the Main Host Tenant. /// </summary> public virtual int? ParentTenantId { get; set; }
[ForeignKey("ParentTenantId")]
public virtual Tenant ParentTenant { get; set; }
/// <summary>
/// Associate Parent Tenants to its Children Tenants
/// </summary>
public virtual ICollection<Tenant> Children { get; set; }
I am implementing the extension of the Tenants with something like this.
I think it's somehow similar to the Organization Units wherein they have root and children.
Any thoughts?