hi
I asked the question URL https://github.com/spospisil/AbpGridSolution/issues/1
Can you get DataDictionaryList in your blazor page now?
var result = await DataDictionaryAppService.GetListAsync(input);
DataDictionaryList = (List<DataDictionaryDto>)result.Items;
If so, the backend is working. You can check DevExpress document to show the data.
I don't have much experience with DevExpress.
Thanks.
hi
Can you share the full exception logs?
Thanks.
你好,
你是否为ABP CLI工具设置了任何代理?
如果是, 请取消它的代理. 如果没有, 请尝试给它设置一下代理.
https://www.digitalcitizen.life/proxy-settings-windows-11/
谢谢
hi
Any idea what the underlying problem is and how I can fix it? I've given access to the private repository with a sample project to @maliming
Where is your repository?
Thanks.
hi
Can you share the 400 error debug logs?
See https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks
hi
You can send an email to info@aspnetzero.com, and we will help you transfer the subscription.
Thanks.
Thanks @starting
@sumeyye.kurtulus will check and reply asap.
Thanks
hi
EXCEPTION: Volo.Abp.UserFriendlyException: The tenant connection string 'Default' is not valid at Volo.Saas.Host.TenantAppService.CheckConnectionStringAsync(Tenant tenant)
Can you override the CheckConnectionStringAsync(Tenant tenant) method of TenantAppService?
protected virtual async Task CheckConnectionStringAsync(Tenant tenant)
{
if (!tenant.ConnectionStrings.IsNullOrEmpty())
{
foreach (var connectionString in tenant.ConnectionStrings.Where(connectionString => !connectionString.Value.IsNullOrWhiteSpace()))
{
if (!(await ConnectionStringChecker.CheckAsync(connectionString.Value!)).Connected)
{
throw new UserFriendlyException(L["TenantHasAnInvalidString", connectionString.Name]);
}
}
}
}