Activities of "maliming"

https://github.com/abpframework/abp/pull/14219

hi

Also, we are you using AutoMaper instead of Volo.Abp.AutoMapper, can I use both?

Volo.Abp.AutoMapper will include AutoMaper .

How about this one? the key is MapExtraProperties.

CreateMap<Tenant, SaasTenantDto>()
    .MapExtraProperties()
    .Ignore(t => t.EditionName)
    .ForMember(
        t => t.HasDefaultConnectionString,
        opt =>
        {
            opt.MapFrom(t =>
                t.FindDefaultConnectionString() != null
            );
        }
    );

If not work for you please share the steps to reproduce the problem.

hi

  1. Yes, You can create a GitHub issue, I will do that in 7.0
  2. You can override the datatables-extensions.js file and make text as a callback.

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js

hi

Modules with UI and its own entities which are combined with the main tenant dbcontext (I want one context across all modules)

The context cannot across all modules,

Others can integrate well with the abp framework.

https://docs.abp.io/en/abp/latest/

hi

The default background job is just simple. You can consider using Hangfire or Quartz

https://docs.abp.io/en/abp/latest/Background-Workers-Hangfire https://docs.abp.io/en/abp/latest/Background-Workers-Quartz

hi

I will check this, You can add an option now.

<abp-select asp-for="Info.TechnicianId" asp-items="Model.TechnicianLookupListRequired" label="@L["Technician"].Value" >
    <option value="">Choose a Technician</option>
</abp-select>

hi

Please try to add the below AutoMapper config.

CreateMap<Tenant, SaasTenantDto>()
    .MapExtraProperties()
    .Ignore(t => t.EditionName)
    .ForMember(
        t => t.HasDefaultConnectionString,
        opt =>
        {
            opt.MapFrom(t =>
                t.FindDefaultConnectionString() != null
            );
        }
    );

CreateMap<Edition, EditionDto>()
    .MapExtraProperties()
    .Ignore(x => x.PlanName);

CreateMap<Edition, EditionLookupDto>()
    .MapExtraProperties();

hi

text is currently just a property, not a callback method.

hi

I have tried to change it with the asp-format in the tag and the DisplayFormat annotation on the property.

Will it work?

hi

Can you explain it in detail?

Showing 7491 to 7500 of 10623 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 10, 2025, 06:30