Base solution for your next web application

Activities of "SelfSwapAdmin"

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • What is your product version?
  • What is your product type (Angular or MVC)?
  • What is product framework type (.net framework or .net core)?

If issue related with ABP Framework

  • What is ABP Framework version?

If issue is about UI

  • Which theme are you using?
  • What are the theme settings?

Product Version: 10.2.0 Product Type: Angular 10.NET Core 5

We need to have the GetAll() method in one of our custom components initialized from the "Load Entity from Database" code-gen automatically refresh using a configurable interval. What is the best way to go about this? Is there an example somewhere we can look at? Thank you!

Incomplete posting of problem - closing in lieu of new request.

I oversimplified a bit. Actually what is getting called is:

getComponentName(event?: LazyLoadEvent) {
    if (this.primengTableHelper.shouldResetPaging(event)) {
        this.paginator.changePage(0);
        return;
    }

    this.primengTableHelper.showLoadingIndicator();

    this._ssFolioServiceProxy
        .getAll(
            this.filterText,
            ..............
            ..............

So GetAll is not being called directly is unresolved in setInterval(this.getAll, getAllInterval).

So in this case how SetInterval be used?

Error TS2339 (TS) Property 'getAll' does not exist on type 'XXXXXComponent'.

What do you mean this has been fixed? How? Where? I am getting this same error trying to build a console app.

ASP.NET Zero 10.2 Angular 10/.NET Core 5

I am using the "Load Entity from Database" feature in Power Tools to do a database-first implementation. It is going well but now I need to do something fairly tricky related to cross-tenant transactions. I need to be able debit any tenant's Account table with an amount and credit any other tenant's Account table with that amount. There are no predetermined and fixed relationships between any tenants. They cannot be assigned to a mutually exclusive organization. We are using a single database for now if not indefinitely. I like my service method being called from Tenant A to be able to insert rows into Tenant B's Account. The Account table is actually just a transation log of debits and credits, normally within a Tenant. For this one feature of our app we need to interact between tenants.

I am the process of prototyping this code now. Do you have a recommended approach for this? I am curious why the "Multi Tenancy" box in Power Tools allows the selection of "Host" or of "Tenant" or of both "Host" and "Tenant". What is the significance of that? What does that accomplish? I am currently using both "Host" only and "Tenant" only in my app.

WOW. I don't know either and a year later this had not been answered. Perhaps if there was PROFESSIONAL DOCUMENTATION we would not need ask....

ASP.NET Zero 10.2 Angular 10/.NET Core 5

I am building a mutli-tenant SAAS. A "SiteAdmin" (No tenant) will have access to everything including custom app lookup tables etc which span tenancy.

Users will be able to self-suscribe to a free subscription level which would grant them a TenantAdmin role that has limited admin scope (like adding additional users within the tenancy) and also a StandardUser role which gives access to the free functionality.

When a subscription is upgraded to a paid version, or the SiteAdmin grants access to a feature set, an additional role or roles would be assigned to the set of tenant users in a tenancy.

Is there a recommended approach to templating these role-permission sets so that they can be easily added?

Could you please elaborate on what you mean by "AspNet Zero does not support user based subscription.". That sounds bad somehow and I would like to understand better what you are saying. Thank you.

Showing 1 to 10 of 19 entries