See https://support.abp.io/QA/Questions/144/Abp-Ver-262-Error-when-hosting-on-IIS-8
Example :
public class UpdateModuleDto
{
public string Name { get ;set ;}
public void Normalize()
{
Name = Name.Trim();
}
}
public async Task<ModuleDto> UpdateAsync(ModuleKeyDto id, UpdateModuleDto input)
{
input.Normalize();
//......
}
Hi, see https://docs.microsoft.com/en-us/ef/core/modeling/value-conversions
Value converters allow property values to be converted when reading from or writing to the database.
Value converters do not change property values when inserting and updating, but change parameter values. You should normalize DTO.
Hi, Angular email settings page is currently unavailable. I create an internal issue for this.
What UI are you using?
I create an issue for this : https://github.com/abpframework/abp/issues/4330
Thanks for your report, it will be fixed in 3.0.
It maybe is a bug, I create an issue for this: https://github.com/abpframework/abp/issues/4327