Activities of "sunivycsm"

Question

I am selecting user _identityUserRepository.

  var query = (await _identityUserRepository.GetQueryableAsync())
      .WhereIf(!string.IsNullOrWhiteSpace(input.Filter),
          x => x.Name != null &&
               x.Name.Contains(input.Filter));

But when I use the following code, it is automatically saved in the datatable.
foreach (var item in query)
{
     item.Name = item.Surname + item.Name;
}

Is there a way I can edit the data without automatically updating it to the database? Here is all my source information:

public virtual async Task<PagedResultDto<LookupDto<Guid>>> GetIdentityUserLookupAsync(LookupRequestDto input)
{
    var query = (await _identityUserRepository.GetQueryableAsync())
        .WhereIf(!string.IsNullOrWhiteSpace(input.Filter),
            x => x.Name != null &&
                 x.Name.Contains(input.Filter));

    foreach (var item in query)
    {
        item.Name = item.Surname + item.Name
    }

    var lookupData = await query.PageBy(input.SkipCount, input.MaxResultCount).ToDynamicListAsync<IdentityUser>();
    var totalCount = query.Count();
    return new PagedResultDto<LookupDto<Guid>>
    {
        TotalCount = totalCount,
        Items = ObjectMapper.Map<List<IdentityUser>, List<LookupDto<Guid>>>(lookupData)
    };
}
  • ABP Framework version: v7.4.1
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:
Question

**ABP Framework version: v7.4.1

UI Type: MVC

Database System: EF Core (SQL Server)

Tiered (for MVC) or Auth Server Separated (for Angular): no

Exception message and full stack trace:

Steps to reproduce the issue:**

Hi,

I want to publish my abp.Web project to Docker. But when I configure docker in publish, the project cannot be published. Is there any documentation that can guide me through configuring or handling this? Thank you.

**ABP Framework version: v7.4.1

UI Type: MVC

Database System: EF Core (SQL Server)

Tiered (for MVC) or Auth Server Separated (for Angular): no

Exception message and full stack trace:

Steps to reproduce the issue: ** Hi,

Now after I publish the project to iis, this error appears and I can't process the jobs.

Question
  • ABP Framework version: v7.4.1
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

I am creating a cshtml page.

I want to display the photos I uploaded to FileManagement. Are there any instructions for that?

I am using abp version as shown below. But when I publish to iis at windows server, the error HTTP Error 500.30 - ASP.NET Core app failed to start appears. I know this error occurs on the server side but when publishing do I need to install anything else on the server with this version of abp?

  • ABP Framework version: v7.4.1
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:
Question
  • ABP Framework version: v7.4.1
  • UI Type: MVC
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC): yes/no
  • Exception message and full stack trace:
  • Steps to reproduce the issue: I am using sso on my application. Can I reuse the Account module? If possible, what steps should I take?

If it can't be reused, how can I do that?

Thank!

Question

I am doing publishing project to iis. I just publish the xxx.WEB project and put it in the inetpub/wwwroot folder at drive C. Then I will use IIS to point to the folder. Usually mvc projects I will do the same. But now I can't show the web, so can you guide me so I can publish the project?

  • ABP Framework version: v6.0.0
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace: Showing 404 when uploading to iis of windows server
  • Steps to reproduce the issue: Publish project xxx.WEB. Attached image is my project folder.

when i run the angular app this error appears. I used "npm add @swinlane" but still no success.

  • ABP Framework version: v6.0.0
  • UI type: Angular / MVC
  • DB provider: EF Core

I start project angula using cmd : npm start Error in image. I nead support.

  • ABP Framework version: v 5.3.4
  • UI type: Angular
  • DB provider: EF Core

I'm editing the login screen on 5.2.1 and using angular. I created 1component Login. On app.component.ts I used replaceableComponentsService to replace the Login. But at the Login page nothing changed. Please help me

  • ABP Framework version: v5.2.1
  • UI type: Angular
  • DB provider: EF Core
Showing 1 to 10 of 18 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11