maliming

Results 526 comments of maliming

hi Can you check this? https://abp.io/support/questions/9858/ProjectName-in-menu-is-not-updated-by-localization#answer-3a1c3a4a-12c8-f5a8-9471-8499bbe1748ahttps://abp.io/support/questions/9858/ProjectName-in-menu-is-not-updated-by-localization#answer-3a1c3a4a-12c8-f5a8-9471-8499bbe1748a

hi Our Angular friends will check this issue.

hi @hillin We need to clarify a few things. For the backend application, we require model binding and validation. ```cs [Required] public int? Age { get; set; } ``` Although...

This is ASP.NET Core behavior. https://learn.microsoft.com/en-us/aspnet/core/mvc/models/validation

hi No problem, I will add code. Thanks.

We have two properties. `IsRequired` and `IsNullable` ```cs public class PropertyApiDescriptionModel { public bool IsRequired { get; set; } // [Required] or public required public bool IsNullable { get; set;...

hi > Can be null in client This means you can set this property to `null` in your Angular client. `Nullable` in backend. > Must be in request This parameter...

hi > class Dto { public required string? Value } → interface Dto { value: string | null }, so you can set Dto.value to null in the angular client,...