hi
Can I check it remotely?
https://zoom.us/j/91651262888?pwd=aDF2bE5hd0tQQ1M0QWxJeHBTWmp0Zz09
hi
Have you migrated and seeded the database? It seems to be a permission issue.
You can overiide some base class methods of AbpInputTagHelperService in your MyInputTagHelperService .
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Form/AbpInputTagHelperService.cs
Maybe you can try:
using System.Text.Encodings.Web;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers;
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Form;
using Volo.Abp.DependencyInjection;
namespace MyCompanyName.MyProjectName.Web
{
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AbpInputTagHelperService))]
public class MyInputTagHelperService : AbpInputTagHelperService
{
public MyInputTagHelperService(IHtmlGenerator generator,
HtmlEncoder encoder,
IAbpTagHelperLocalizer tagHelperLocalizer)
: base(generator, encoder, tagHelperLocalizer)
{
}
}
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AbpInputTagHelper))]
public class MyInputTagHelper : AbpInputTagHelper
{
public MyInputTagHelper(AbpInputTagHelperService tagHelperService)
: base(tagHelperService)
{
}
}
}
hi
You can try to create a new taghelper and make it executed first.
https://github.com/abpframework/abp/blob/48c52625f4c4df007f04d5ac6368b07411aa7521/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Form/AbpIdNameTagHelper.cs#L18
hi
You can create a new project then check the code of XXXDbMigrationService
hi
It seems the Swashbuckle.AspNetCore
do some change for IIS virtual directory, Can you try to upgrade and re-try?
https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/1953 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/1392#issuecomment-697348303
hi
abphelper cli has a feature that we can run CRU based on a c# model class
Can you share the details of this feature?
hi
Can you share the source code of your XXXDbMigrationService
?
It should contain such code like below.
foreach (var tenant in tenants)
{
using (_currentTenant.Change(tenant.Id))
{
await SeedDataAsync(tenant);
}
}