How to force UPPERCASE when adding or editing a record

Hello,

I want everything that is registered to be UPPERCASE

Thanks.

This can be done by adding a partial method for example OnXXXUpdated. Here is some sample code

partial void OnCategoryUpdate(Category category)
{
    category.CategoryName = category.CategoryName.ToUpper();
}

Hello @korchev,

I already knew this way, I thought I had something native like in windows forms where I put the charactercase that the field accepts.

Thank you.