Hi, I want replace(automatically) right panel(chat panel) with left panel(Menu) when language set to Persian or Arabic.
thanks
Hi, How to set the main menu to be closed by default?
Hi, When i selected "enum" type for filed type, the tool is hanged!
Hi, How to convert type 'System.Collections.Generic.List<Province>' to 'Abp.NameValue<string>'
public List<NameValue<string>> GetProvincesForCombo(string searchTerm)
{
var provinces = _provinceRepository
.GetAll()
.WhereIf(
!searchTerm.IsNullOrWhiteSpace(),
p =>
p.Name.ToLower().Contains(searchTerm.ToLower())
)
.OrderBy(p => p.Name);
return (NameValue<string>) provinces;
}
Hi, I want to call the web service and save the data received from it in the program. Is there a documentation for calling the web service? In which project should I call the web service?
hi, I enable google login for social media logins in appsettings.json. but in login page I don't see login with google.
,
"Google": {
"IsEnabled": "true",
"ClientId": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"ClientSecret": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
},
Should I do something else?
Hi, I would like to show the creatorusername in UI If i define " public string CreatorUserName { get; set; }" in EntityListDto is enough? Will object-mapper it automatically do this?
public class ProvinceListDto : EntityDto<long>, IHasCreationTime
{
public string Name { get; set; }
public DateTime CreationTime { get; set; }
public string CreatorUserName { get; set; }
public bool IsDeleted { get; set; }
}
public async Task<PagedResultDto<ProvinceListDto>> GetProvinces(GetProvincesInput input)
{
var query = _provinceRepository
.GetAll()
.WhereIf(
!input.Filter.IsNullOrWhiteSpace(),
p =>
p.Name.Contains(input.Filter)
);
var provinceCount = await query.CountAsync();
var provinces = await query
.OrderBy(input.Sorting)
.PageBy(input)
.ToListAsync();
var provinceListDtos = ObjectMapper.Map<List<ProvinceListDto>>(provinces);
return new PagedResultDto<ProvinceListDto>(
provinceCount,
provinceListDtos
);
}
Hi, How to load all records(with soft deleted rows)?