protected async Task SetValueFromObjectAsync(object value)
        {
            if (!IsDisabled)
            {
                Property.Setter(Entity, value);
            }

            await EditContext.NotifyPropertyChangedAsync(Property);
        }