Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "maliming"

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/e0ded5d8702f389aa1f5947d3446f16aec845287/src/Abp/Application/Services/ApplicationService.cs#L51

For design reasons, you'd better use dependency injection.

Seems to be your spelling mistake OrderByDescending

https://docs.microsoft.com/en-us/dotnet/api/system.linq.enumerable.orderbydescending?view=netframework-4.7.2

If you want to use database paging, please use IQueryable

hi schneana.

abp v4.1 did not modify the features you mentioned. https://github.com/aspnetboilerplate/aspnetboilerplate/releases/tag/v4.1.0

Try Resolve IConnectionStringResolver under the PostInitialize method to see if it is correct?

var connectionStringResolver = IocManager.Resolve<IConnectionStringResolver>();

public override void PostInitialize()
{
    var configurationAccessor = IocManager.Resolve<IAppConfigurationAccessor>();
    var connectionStringResolver = IocManager.Resolve<IConnectionStringResolver>();
    // ...
}

I have not reproduced your question, please share more details and code.

You can also add an en-AU language instead of modifying en. Then set en-AU to the default language.

This document may also be helpful to you. https://aspnetboilerplate.com/Pages/Documents/Zero/Language-Management

What is the content of your appsettings.Production.json file?

Publish will use the appsettings.Production.json configuration file

https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Mvc/appsettings.Production.json https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Web.Host/appsettings.Production.json

Maybe rabbitmq can help you with the communication needs between multiple servers. https://www.rabbitmq.com/tutorials/tutorial-three-dotnet.html

In multiple iis servers is for load balancing?

Showing 2601 to 2610 of 3000 entries