Given this markup:
<SfMaskedTextBox Mask="(000) 000-0000" Placeholder="Lounge Phone"
FloatLabelType="@FloatLabelType.Always" @bind-Value="@thisUnit.loungePhone">
</SfMaskedTextBox>
<ValidationMessage For="@(() => thisUnit.loungePhone)" />
Entering, 1112223333 appears as (111) 222-3333 and is stored in the database as '111222333'.
Is it possible to have the it stored as it is displayed ... '(111) 222-3333' ?