You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we generate proxy on a Turkish language setting computer with CLI; file names first letter and property names first letter which is starting with 'I' letter becomes Turkish 'ı' letter (i without a dot on top). This makes no problem for filenames. Also property names starting with 'ı' is not a problem on typescript component.ts files, but they can not be used in html template files.
Also Enum types or navigation properties, as you see at below example, imported correctly but property is referred as 'any' (For this, a new issue may be required?).
And also nullable enum types converted fully incorrect. they can not be compiled.
This is the dto definition:
public class IletisimPersonelDto : FullAuditedEntityDto
{
public Guid PersonelKimlikId { get; set; }
public IletisimReferansi IletisimReferansi { get; set; }
public string TelefonEv { get; set; }
public string TelefonIs { get; set; }
public string TelefonCep { get; set; }
public string EPosta { get; set; }
}
and it is converted as "ıletisim-personel-dto.ts" file name (name starts with 'ı')
Content:
When we generate proxy on a Turkish language setting computer with CLI; file names first letter and property names first letter which is starting with 'I' letter becomes Turkish 'ı' letter (i without a dot on top). This makes no problem for filenames. Also property names starting with 'ı' is not a problem on typescript component.ts files, but they can not be used in html template files.
Also Enum types or navigation properties, as you see at below example, imported correctly but property is referred as 'any' (For this, a new issue may be required?).
And also nullable enum types converted fully incorrect. they can not be compiled.
This is the dto definition:
and it is converted as "ıletisim-personel-dto.ts" file name (name starts with 'ı')
Content:
The text was updated successfully, but these errors were encountered: