Activities of "joe@tronactive.com"

Is there any documentation about how to publish the Angular version microservices to Azure? Or to a virtual machine?

I created a Microservice project from the new template and I would like to get rid of the SaasService (and get rid of multi-tenancy) and remove the ProductService as well. Obviosuly I can just remove the projects. But I am guessing there must be something else I need to do correct?

How do you override the save button text in a modal? I am using Asp.NET MVC version.

Is there a good way to upgrade a MVC app to a Blazor Web Assembly version?

  • ABP Framework version: v4.2.2
  • UI type: MVC
  • DB provider: EF Core

I am also a ASP.NET Zero user and I like how the log file starts new once it reaches 10MB. How can I apply something like that to abp? The log files get way to big to handle. To me it is a big issue.

What is the recommended way to use a DBContext directly in a service? Is it something like this? var masterDbContext = (Integr8MasterDbContext) await _customerRepository.GetDbContextAsync();

Or directly inject the DBContext like this? private readonly Integr8MasterDbContext _masterDbContext;

  • ABP Framework version: v4.2.2
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

I want to redirect a user to the actual login page https://localhost:44343/Account/Login if they are not logged in. Not the home page. I tried adding an override HomeController but it doesn't seem to be overriding the frameworks. I put a break poing in the Index method and it never gets hit. Any ideas why?

[Dependency(ReplaceServices = true)] public class HomeController : AbpController { public ActionResult Index() { if (CurrentUser.IsAuthenticated) { return View(); }

        return Redirect("/Account/Login");
    }
}
Question

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

  • ABP Framework version: v4.2.1
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

I added the FileManagement module code through ABP Suite. But decided not to use it for now. Is there anyway to remove it now beside obviously just in Visual Studio and remove the files? I want to make sure everything is removed and it doesn't show up in ABP Suite as installed.

  • ABP Framework version: v4.2.1
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

I installed the FileManagement module. I have configured it to use the FileSystem which all works good. But instead of keeping track of files using a Guid for name. i would like to just have the app scan a specific folder and show the folder system instead.

SO basically if I have a root default folder of I:\Dev\JML\TestFileSystem\ at his has a folder called XML and a folder PDFs with 2 different files each. It would just automatically show the file structure like below. And then when you create a folder and upload files to the folder it will rescan the structure and rebuild the nested directories and files. Not create them in the DB. Any help would be appreciated. Root --XML ---test.xml ---test2.xml --PDFs ---test.pdf ---test2.pdf

  • UI type: Angular
  • Tiered (MVC) or Identity Server Seperated (Angular): yes

I need to use the GetDbContext from a repository just like in these documents https://docs.abp.io/en/abp/1.0/Entity-Framework-Core it states about 3/4 down on the page "GetDbContext returns a DbContext reference instead of BookStoreDbContext. You can cast it, however in most cases you don't need it."

I need to do this since my project has several DbContexts but I haven't found a good way to cast it yet. Do you have any examples or suggestion?

Showing 11 to 20 of 24 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 14, 2025, 14:54