Hi @zhaof,
You should not be able to select
Guid
type in Suite's Crud Page Generator UI if the solution's UI is Blazor. Because Blazor components doesn't supportGuid
type.Is it a module template? Or how did you add that property with Guid type?
Hi yekalkan,
Yes, I used a module template, but Blazor components do not support the guid type. My suggestion is to either not generate the guid type or convert it to a character type to avoid compilation errors.
hi
Please refer to https://github.com/dotnet/aspnetcore/issues/38842#issuecomment-1342540950
This seems a aspnetcore problem.
hi maliming ,
It will be OK if I add following statements. This is a change of net7blazor service. I suggest that DisableImplicitFromServicesParameters = true,or explain it in the doc.
context.Services .AddServerSideBlazor() .AddHubOptions(opt => { opt.DisableImplicitFromServicesParameters = true; });
hi maliming
It didn't work.
Can you try to use
Configure
?Configure<OpenIddictServerAspNetCoreBuilder>(configure => { configure.DisableTransportSecurityRequirement(); });
After trying to add the following configuration, it works.
Configure(options =>
{
options.DisableTransportSecurityRequirement = true;
});