with a simple blazor server app i can add new rows to a table.
when i generate a blazor web asembly or auto app for the same table it fails to add a new row.
i am getting an error that a required column is missing.
the column is a sql server "TimeStamp" column that is in the table and is in the generated c# code.
TimeStamp is a server auto generated / updated value so the client should not be creating or sending a value.
so the client and server code should not be requiring a value but should get the value after the record has posted.
the c# class have the column defined this way:
[Timestamp]
[Required]
public byte[] RowVersion { get; set; }
should this be not mapped ??
or marked with some other attribute ??