Thanks.. will wait..
I have another posted question for you https://support.abp.io/QA/Questions/268/General-Question--How-to-accomblish-a-touch-free-upgrade-in-the-future
hi alper,
this os a question.
i want to confirm if the above can be accomplished now.? or in a future update.
repro on the BookStore sample app
book-dto.ts
import { ListResultDto } from '@abp/ng.core';
export class BookDto extends ListResultDto<Acme.BookStore.BookDto> {
totalCount: number;
items: any[];
constructor(initialValues: Partial<BookDto> = {}) {
super(initialValues);
}
}
book-test.service.ts
import { RestService , PagedResultDto} from '@abp/ng.core';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
import {BookDto} from '../models';
@Injectable({providedIn: 'root'})
export class BookTestService {
apiName = 'Default';
constructor(private restService: RestService) {}
getList(): Observable<PagedResultDto<BookDto>> {
return this.restService.request({ url: '/api/app/bookTest', method: 'GET' },{ apiName: this.apiName });
}
}
I have download the latest v3.0.2 and created a new module with (angular)
abp new Acme.BookStore -t module-pro -u angular
is thier documentation on how the angular part in the module is structure and how to use it and integrate it with an existing abp solution as a reference
Thanks,
an Example for getUsers(params?: ABP.PageQueryParams): Observable<Identity.UserResponse>;
would be helpful.
Works now, Thanks.
solved with v3.0.5
the app is a single tenant deployed on my client on-premises datacenter.
but I want to use the app in multiple clients (my customers) and each client will have different editions/features enabled of the same app.
I want to make sure that the client can not modify the editions/features as they have access to the DB on-premises
what is the best way to handle deployment of abp commercial in this scenario?
Looks promising, Thanks.