これが理にかなっているかどうか知りたいのですが。
私はDTOモデルを持っています:
public class CategoryListByKeywordsDetailDto : ILocalizable
{
public int Id { get; set; }
public string Name { get; set; }
public string NameEN { get; set; }
public string NameES { get; set; }
public string NameFR { get; set; }
public string NamePT { get; set; }
public int SearchCount { get; set; }
public string ListController { get; set; }
public string ListAction { get; set; }
}
とそのリスト
public class CategoryListByBeywordsListDto
{
public CategoryListByBeywordsListDto()
{
CategoryListByKeywordsDetails = new List<CategoryListByKeywordsDetailDto>();
}
public IList<CategoryListByKeywordsDetailDto> CategoryListByKeywordsDetails { get; set; }
public int TotalSearchCount { get; set; }
}
'sリスト'TotalSearchCount
に基づいてプロパティをリアルタイムで計算できますか?CategoryListByKeywordsDetails
SearchCount