Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "kalidarscope"

I didn't have a TenantId column in my table. Is it must to have?

I am getting above details in the records.

I am getting 1 in AbpSession.TenantId.

Getting empty result. But i have 2 records in database. Tested the connection string also. Everything is fine.

I have done all the steps they have mentioned in the following link. "https://docs.aspnetzero.com/documents/zero/latest/Developing-Step-By-Step-Angular#using-getpeople-method-from-angular-component"

But i have changed the table names and variable only. Everything is mapped correctly based on document.

public ListResultDto<SectionsListDto> GetSections(GetSectionsInput input)
        {          
            var sections = _sectionRepository
               .GetAll()
               .WhereIf(
                   !input.Filter.IsNullOrEmpty(),
                    p => p.rec_id.Contains(input.Filter) ||
                    p.s_text.Contains(input.Filter) ||
                    p.t_text.Contains(input.Filter)
                )
                .OrderBy(p => p.rec_id)
                .ThenBy(p => p.s_text)
                .ToList();

            return new ListResultDto<SectionsListDto>(ObjectMapper.Map<List<SectionsListDto>>(sections));
        }

Mark the breakpoint in VS in above method. But didn't get any data from database.

We have started the bat file to generate the service proxy. But the service proxy is not re-generated. why isn't generated the file?

ERROR in src/app/main/Phonebook/Phonebook.component.ts(4,10): error TS2724: Module '"C:/Project/ASAP/src/ASAP.Web.Host/src/shared/service-proxies/service-proxies"' has no exported member 'PersonServiceProxy'. Did you mean 'SessionServiceProxy'?

yes but still it in same state seeing same error

Question

Angular

Hi,

Angular keed on uninstalling out need guidance.

Thanks Ponvel

I would to like to change the ports of 4200(angular) and 22742(swagger). Is it possible to change? if it is possible, then which file i have to change?

Showing 111 to 120 of 121 entries