hi
Your ticket has been refunded.
hi
We can't reproduce this error in the 8.0 startup template.
Can you share a simple project? liming.ma@volosoft.com
hi
I will confirm and fix this. Your question credits refunded.
hi
The expression must be Expression<Func<TEntity, bool>>
If you have a string column you can try to
Expression<Func<TEntity, bool>> myStringFilter = e => !IsMyFilterEnabled || EF.Property<string>(e, "MyString") == CurrentString;
hi
You can add TenantId and UserId to job parameters.
Then switch tenant and target user.
hi
This is caused by net 8 breaking changes.
WORKDIR /app
EXPOSE 80
EXPOSE 443
ENV ASPNETCORE_URLS=http://+:80;https://+:443
https://learn.microsoft.com/en-us/dotnet/core/compatibility/containers/8.0/aspnet-port
hi
Please share the logs of the authserver.
There are errors of detail in it.
hi
I will create an internal issue to discuss these. Thank you very much.
Your credits refunded.
hi
Can you check the browser's console? There may be some errors/warnings.
hi
try to use your authserver.pfx
Please use dotnet dev-certs https -v -ep authserver.pfx -p 6a511cc3-738b-426c-ab04-5d236fe77a1c command to generate the pfx file if there is no such file.
public override void PreConfigureServices(ServiceConfigurationContext context)
{
var hostingEnvironment = context.Services.GetHostingEnvironment();
var configuration = context.Services.GetConfiguration();
PreConfigure(builder =>
{
builder.AddValidation(options =>
{
options.AddAudiences("AccountService");
options.UseLocalServer();
options.UseAspNetCore();
});
});
PreConfigure(options =>
{
options.AddDevelopmentEncryptionAndSigningCertificate = false;
});
PreConfigure(builder =>
{
builder.AddSigningCertificate(GetSigningCertificate(hostingEnvironment, configuration));
builder.AddEncryptionCertificate(GetSigningCertificate(hostingEnvironment, configuration));
builder.SetIssuer(new Uri(configuration["AuthServer:Authority"]));
});
}