I am not able to use an uint32, int16, ... when using the FluentNumberField.
<FluentNumberField @bind-value="HouseDetail.Age" TValue="UInt16">Age</FluentNumberField>
I cannot change the field type to int because this is what is expected in the Sql Server type. This is extremely frustrating and there is not much documentation on the Fluent UI controls.
It is also very upsetting that I cannot use the display name as a label for the FluentTextField and I have to use some type of GetDisplayName extension method.
I am also very upset that the binding for the FluentComboBox does not work for enum types.
It has been extremely discouraging using the Fluent controls with Blazor. I wanted to use them with Razor pages but there is no way to bind anything. Does anyone know about any of this?
I don't really want to use React and I'm seriously thinking of forgetting about the Fluent controls until they are actually working with Blazor pages. Is there anyway to get the fluent controls to bind without using Blazor?
There is not much information on the newer Fluent controls anywhere and everyone is still using the old ones which don't work very well either.
I have tried using the TValue property but that doesn't help.
You don't have to use the Fluent Library. It's not a commonly used component library.
Here's an example using standard input controls that support
uint
andulong
.Note
uint
andulong
are types whileUint16
.. etc are objects.If you use the Fluent controls, you need to think about your data pipeline design. What you get from the database is a Dbo object. Your domain objects don't have to be the same. You map from one object to another when you move data from your data domain to your domain/core domain.
Consider this:
You get your data as an immutable record like this:
When you want to edit that data you convert it to a Edit object:
And use
AsRecord
to get the record you want to save back. I've added the form locking code to demo how to tie it into the edit model.Who is
everyone
? We very rarely see any questions on here about the Fluent controls. Most people use other libraries, or write their own.