Questions tagged [abp]

ABP is an open source application framework focused on ASP.NET Core based web application development, but also supports developing other types of applications.

The ABP Framework is a complete infrastructure based on the ASP.NET Core to create modern web applications and APIs. It is the next generation of the open source ASP.NET Boilerplate framework.

For documentation visit: https://abp.io/documents/abp/latest

811 questions
2
votes
2 answers

Login Success but Redirect fails

I am using Blazor WebServer with Identity Server template, downloaded from ABP.IO When run locally, it all works fine. Login is success and able to see the post login page. Once deployed to Azure App Service, Identity page shows correctly and even…
2
votes
1 answer

Should I enforce referential integrity between my related aggregate roots? If so, where?

This seems like a fundamental question and I have not worked much with DDD. The context of this question is in regards to working with the ABP Framework, its layers, and its generated code. Should I enforce referential integrity between my related…
jlavallet
  • 1,267
  • 1
  • 12
  • 33
2
votes
1 answer

How to switch from Lepton Theme To Basic Theme in ABP MVC Project

I generated a MVC project using abp suite with commercial license. It has default Lepton theme, but i would like to switch to basic theme as it is more easy for customization.
Dev Raj Gautam
  • 121
  • 1
  • 11
2
votes
1 answer

ABP Suite seems to be generating code that will not compile

I was having trouble copying code from the EasyCrm sample project so I took Alper's advice and tried to generate all of my classes through the ABP Suite. Everything works pretty well until I get to the creation of a navigation property. ABP Suite…
jlavallet
  • 1,267
  • 1
  • 12
  • 33
2
votes
1 answer

ABP.IO - Blazor WebAssembly - Tenant-specific login

I'm using the ABP.IO Blazor template for my project, trying to build a simple multi-tenant portal. The problem I am running into is trying to avoid having an end-user select a specific tenant on the login screen. Using this page as my reference:…
dlboutwe
  • 63
  • 1
  • 7
2
votes
1 answer

Why does this Windows Terminal batch file open an extra tab?

I'm attempting to run all four sites at the same time within a single tab of Windows Terminal using split panes only. I have the following abp tiered MVC/efcore startup batch file: wt -M -d "./src/MyProject.Web" cmd /k "title Website & dotnet watch…
djbyter
  • 763
  • 8
  • 28
2
votes
2 answers

'abp' is not recognized as an internal or external command,

I just started exploring the Abp features, I created a sample project from their website and able to build the project successfully. But When I run the dbmigrator project getting an exception, Below is the screenshot of the error, I followed this…
BV Winoya
  • 199
  • 2
  • 12
2
votes
1 answer

Connect Flutter app with abp.io framework

Hi we are trying to connect our flutter app with abp.io framework. We are facing hiccups in connecting the auth framework. We are able to open the web url from flutter and able to login. But after login it redirects to swagger. We believe we have…
vinbhai4u
  • 1,329
  • 3
  • 19
  • 36
2
votes
1 answer

An exception was thrown while activating Castle.Proxies.AlertAppServiceProxy

I am trying to leverage the Book and Author abp tutorial to build a sample application. In my sample app, I have sites (rather than books) and alerts (rather than authors). Everything seems to be right. However, as soon as I load the /alerts page, I…
KevinL
  • 25
  • 1
  • 5
2
votes
1 answer

How to disable dynamic WebAPI for certain application services

I want to turn off the automatic WebAPI generation service for a specific application service in my ABP project.
Alper Ebicoglu
  • 8,884
  • 1
  • 49
  • 55
2
votes
2 answers

What is the best way to create a new blank UI while keeping the ABP Framework infrastructure?

In a Multitenancy B2C application, the interface created by the Application Startup Template applies well to the backoffice, but for the storefront website I think it would be necessary to create a blank UI project (angular or MVC). What would be…
Rafael Augusto
  • 355
  • 3
  • 9
2
votes
0 answers

Best Practice to create static roles with permissions

I am using abp 4.1.2 and I am struggling to find best practices where to create static roles programmatically (including permissions). Context: For my application, I have several permissions created. I want to programmatically create a set of Roles…
2
votes
2 answers

Extending existing ABP controllers

I am using version 3.3.2 of the ABP Framework. How can I add new methods to an existing controller? I want to extend the IdentityUserController. Following the docs I am creating my own implementation as following: [Dependency(ReplaceServices =…
Kevin
  • 197
  • 1
  • 4
  • 13
2
votes
2 answers

How to relate Abpuser Table to other tables ABP Webframework

I have a requirement. There are 3 types of users Social User Influencer Business User These three users need to be linked to same AbpUser Table. Something like. One AbpUser has one to one relationship with Social, Influencer and Business user.…
Mohan
  • 81
  • 4
2
votes
1 answer

Creating new Role (by code) during the Tenant creation process from UI (ABP.IO)

I am trying to add the creation of roles while I create a new Tenant from the UI on ABP.IO Framework version 4. From ABP.IO documentation, I found that by using the existing class SaasDataSeedContributor I can "seed" some datas while I am creating a…
Chris
  • 21
  • 1
1 2
3
53 54