Activities of "LucasFarias"

Hello,

Yes, I'm using VS 2026, and the SDK is 10.0.102.

The problem is that, in the IDE 2026, it doesn't generate errors and runs the application, but, for example, when accessing a page, it generates an error about a missing mapping.

I've already tried all the steps of deleting bin, obj, and rebuilding the application, but nothing has solved it.

The files were not generated in AguiaSistemas.GestaoComercial.Application\obj\Debug\net10.0. And the CS8795 errors remain.

I'm migrating from AutoMapper to Mapperly. My application is based on ABPFramework, .NET 10.0, Visual Studio 2022 v. 17.14.25.

The problem is that VS generates 294 errors as shown below, one for each mapping class. I tested using VS 2026 and VS Code; they don't generate the error list, but when running the application, the missing mapping appears in the terminal.

Another issue is that when running dotnet run in the CLI, these errors don't appear, not even during compilation, but they do exist.

I've already checked the various documentation, deleted bin and obj files, and tried practically everything available, but the error persists. https://github.com/riok/mapperly/discussions/1431 https://mapperly.riok.app/docs/getting-started/installation/ https://abp.io/docs/10.0/release-info/migration-guides/AutoMapper-To-Mapperly

`using AguiaSistemas.GestaoComercial.WorkflowsPreVendas; using System; using System.Linq; using Riok.Mapperly.Abstractions; using Volo.Abp.Identity; using Volo.Abp.Mapperly; using Volo.FileManagement.Files;

namespace AguiaSistemas.GestaoComercial;

[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)] public partial class AcessorioToAcessorioDtoMapper : MapperBase<Acessorio, AcessorioDto> { public override partial AcessorioDto Map(Acessorio source);

public override partial void Map(Acessorio source, AcessorioDto destination);

}

[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)] public partial class AcessorioToAcessorioExcelDtoMapper : MapperBase<Acessorio, AcessorioExcelDto> { public override partial AcessorioExcelDto Map(Acessorio source);

public override partial void Map(Acessorio source, AcessorioExcelDto destination);

}

[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)] public partial class AcessorioToLookupDtoGuidMapper : MapperBase<Acessorio, LookupDto

[MapProperty(nameof(Acessorio.Nome), nameof(LookupDto<Guid>.DisplayName))]
public override partial void Map(Acessorio source, LookupDto<Guid> destination);

}

[Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)] public partial class AtividadeToAtividadeDtoMapper : MapperBase<Atividade, AtividadeDto> { public override partial AtividadeDto Map(Atividade source);

public override partial void Map(Atividade source, AtividadeDto destination);

}`

AguiaSistemas.GestaoComercial.Application net10.0 êxito (2,2s) → bin\Debug\net10.0\AguiaSistemas.GestaoComercial.Application.dll

Question

Hello. I need to implement a Kanban functionality in our application made with abp. I would like to know if you suggest any libraries for this purpose?

Hello. I'm having trouble using the "collapse" functionality of the "Budget" item. That is, when I click on a "Budget" it expands perfectly, showing its items, however, when I click on it again, it doesn't "close", it closes if I click on another Budget. I've tried several options, but without any success. Please note that this page is a modal that is displayed on another page. I have Bootstrap in my application:

/* Bootstrap v5.3.3 (https://getbootstrap.com/)

  • Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
  • Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */
  • ** Versão do Framework ABP **: v8.0.4
  • ** Tipo de UI **: /MVC/Blazor Server
  • ** Sistema de banco de dados **: EF Core (SQL Server
    • ** Em camadas (para MVC) ou separadas por servidor de autenticação (para Angular) **: não
  • ** Mensagem de exceção e rastreamento de pilha completa **: not
  • ** Etapas para reproduzir o problema ** :
@page
@using AguiaSistemas.GestaoComercial.OrcamentoRevisoes
@using Microsoft.AspNetCore.Mvc.Localization
@using AguiaSistemas.GestaoComercial.Localization
@inject IHtmlLocalizer<GestaoComercialResource> L
@model AguiaSistemas.GestaoComercial.Web.Pages.Concluidos.ItensModel

@section Scripts {
    <abp-script src="/Pages/Concluidos/itens.js"></abp-script>
    <abp-script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></abp-script>
}

<abp-modal centered="true" size="Large" id="productInfoModal">
    <abp-modal-header title="@L["Revisões"].Value"></abp-modal-header>
    <abp-modal-body>
        <div class="accordion" id="orcamentoAccordion">
            @foreach (var group in Model.OrcamentoRevisaoItems.GroupBy(item => new { item.Orcamento.NrOrcamento, item.OrcamentoRevisao.NrRevisao }))
            {
                var groupId = $"group-{group.Key.NrOrcamento}-{group.Key.NrRevisao}";
                <div class="accordion-item">
                    <h2 class="accordion-header" id="heading-@groupId">
                        <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse-@groupId" aria-expanded="false" aria-controls="collapse-@groupId">
                            Orçamento @group.Key.NrOrcamento/@group.Key.NrRevisao
                        </button>
                    </h2>
                    <div id="collapse-@groupId" class="accordion-collapse collapse" aria-labelledby="heading-@groupId" data-bs-parent="#orcamentoAccordion">
                        <div class="accordion-body">
                            <abp-table striped-rows="true" class="productInfo">
                                <thead>
                                    <tr>
                                        <th>@L["Item"].Value</th>
                                        <th>@L["Nome"].Value</th>
                                        <th>@L["Pedido"].Value</th>
                                        <th>@L["Peso"].Value</th>
                                        <th>@L["Valor"].Value</th>
                                        <th>@L["Dados"].Value</th>
                                        <th>@L["Opção"].Value</th>
                                        <th>@L["Situação"].Value</th>
                                    </tr>
                                </thead>
                                <tbody>
                                    @foreach (var item in group)
                                    {
                                        <tr>
                                            <td>@item.Item.Codigo</td>
                                            <td>@item.Item.Nome</td>
                                            <td>@item.OrcamentoRevisaoItem.NrPedido</td>
                                            <td>@item.OrcamentoRevisaoItem.PesoOrcado.ToString("N2")</td>
                                            <td>@item.OrcamentoRevisaoItem.ValorOrcado.ToString("C2")</td>
                                            <td>@item.OrcamentoRevisaoItem.DataPedido?.ToString("dd/MM/yyyy")</td>
                                            <td>@item.OrcamentoRevisaoItem.Opcao</td>
                                            <td>@L[$"Enum:OrcamentoRevisaoItemSituacao.{item.OrcamentoRevisaoItem.Situacao}"].Value</td>
                                        </tr>
                                    }
                                </tbody>
                            </abp-table>
                        </div>
                    </div>
                </div>
            }
        </div>
    </abp-modal-body>
    <abp-modal-footer buttons="Close"></abp-modal-footer>
</abp-modal>

Hello, I recently changed notebooks. I installed abp suite, however, when accessing it I have no access to "create a new solution".

Good afternoon, Dear. I hope you are well.

What are the possible causes for the admin, password 1q2w3E*, to lose access to the "actions" button?

Detail that I can't access the "user" page in "Identity Management".

I have already deleted the Database and performed a new migration, but without success.

Answer

Good morning.

Sorry, follow again.

Abp

Answer

Good morning.

No error is generated.

I believe that the application is not reaching the block below.

Below is a video about the "pick" button

Abp

rowAction: { element: $("<button/>") .addClass("btn btn-primary btn-sm m-btn--icon") .text(l("Pick")) .prepend($("<i/>").addClass("fa fa-fa-search")) .click(function () { var pickedId = $(this).data().id; var pickedDisplayName = $(this).data().displayName; $('#NavigationPropertyLookupTableModal #CurrentLookupId').val(pickedId); $('#NavigationPropertyLookupTableModal #CurrentLookupDisplayName').val(pickedDisplayName); $('#NavigationPropertyLookupTableModal #CancelButton').click(); })

Answer

Good afternoon, Dear. I hope you are well.

I'm using the navigation properties and the Modal UI selection type, however - it's important to note that I didn't make any changes, I generated them through Abp Suite - the "pick" button simply doesn't work, it doesn't display the table.

I've already debugged the code, compared it with another one that is working and it's exactly the same, but I haven't come to any conclusions.

Detail that does not present any errors in VSC and Console.

Showing 1 to 10 of 11 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.2.0-preview. Updated on February 17, 2026, 09:10
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.