Hi,
Could you share the full steps to reproduce? thanks.
Hi,
Do you have a clear timeline for the development?
Sorry, but there is no timeline for now, you can ask it here: https://support.abp.io/QA/Questions/3052/Your-feature-request
Am I correct in my understanding that I can implement this by using the following library? https://github.com/aspnet/AspLabs/tree/main/src/WebHooks
yes, you can try. but the ASPNETCore team hasn't updated it for a long time, so I'm not sure if it's available
Hi,
This is a bug of MAUI: https://github.com/dotnet/maui/issues/10068
You can solve it with: https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=powershell#enable-long-paths-in-windows-10-version-1607-and-later
Hi,
The feature is still on the roadmap: https://github.com/abpframework/abp/issues/4223
You can check this: https://github.com/talkingdotnet/ASPNETCore_WebhooksSample/
But the ASPNETCore team hasn't updated it for a long time, so I'm not sure if it's available
Hi,
We will fix the problem, and your ticket refunded.
Hi,
It works for me:
Server=localhost;Database=MyProjectName_test;user={user};password={password};TrustServerCertificate=True
[Dependency(ReplaceServices = true)]
public class MyMultiTenantConnectionStringResolver: MultiTenantConnectionStringResolver
{
protected ICurrentTenant CurrentTenant { get; }
public MyMultiTenantConnectionStringResolver(IOptionsMonitor<AbpDbConnectionOptions> options, ICurrentTenant currentTenant, IServiceProvider serviceProvider) : base(options, currentTenant, serviceProvider)
{
CurrentTenant = currentTenant;
}
public async override Task<string> ResolveAsync(string connectionStringName = null)
{
var connectionString = await base.ResolveAsync(connectionStringName);
if (CurrentTenant.IsAvailable)
{
connectionString = connectionString.Replace("{user}", "sa").Replace("{password}","admin@123456");
}
return connectionString;
}
public override string Resolve(string connectionStringName = null)
{
var connectionString = base.Resolve(connectionStringName);
if (CurrentTenant.IsAvailable)
{
connectionString = connectionString.Replace("{user}", "sa").Replace("{password}","admin@123456");
}
return connectionString;
}
}```
Hi,
I think this is a new topic, please open a new ticket thanks.
Hi,
Should be:
https://github.com/NavneetProject/abp-commercial-docs/tree/{version}
Not https://github.com/NavneetProject/abp-commercial-docs/tree/1.0.0
Please try:
https://github.com/NavneetProject/abp-commercial-docs/tree/{version}