I didn't have a TenantId column in my table. Is it must to have?
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?
yes but still it in same state seeing same error
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?