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
3
votes
1 answer

Data come from API, but does not display. Angular 9 ABP framework

I want to populate data in my select control which is placed in the header child component, but data comes from the API, but it does not display. . ngOnInit() { this._assingedSiteService.getAssignedSitesForLogInUser().subscribe( (res)…
Affan Sheikh
  • 113
  • 11
3
votes
1 answer

ABP without ORM

I recently stumbled upon ABP (previously Asp.Net BoilerPlate) as a framework to rebuild a web-app in a modular way. It's very interesting indeed, and come with a very wild bunch of basic elements like authentication, logging, security,…
Luca Vespi
  • 31
  • 4
3
votes
1 answer

Abp.io Exception: An exception was thrown while activating Castle.Proxies.ProcessesServiceProxy

I'm still new with Abp.io, and I'm getting the following Exception. I followed the instructions in Abp.io Documentation. May you please help me to know what did I miss. 2019-10-10 14:01:46.644 +03:00 [ERR] An exception was thrown while activating…
bunjeeb
  • 1,096
  • 1
  • 17
  • 32
3
votes
0 answers

Why is not modeled AppUser on MigrationDbContext?

I'm starting to use Abp Framework (the new version - abp.io), I'm using last version 0.18.1. I understand I have two DbContext, one for the aplication and run-time model and other to create migrations, that allow me to have several run-time…
Javier Ros
  • 3,511
  • 2
  • 21
  • 41
3
votes
1 answer

AspNetBoilerplate Not Loading Settings From The Database

I am using aspNetBoilerplate to send an email (or attempt to send an email) I have added the settings to the database using the Default Settings Creator in the seed data like so namespace ESMPortal.EntityFrameworkCore.Seed.Host { public class…
PowerMan2015
  • 1,307
  • 5
  • 19
  • 40
3
votes
0 answers

Multiple DbContexts in abp.io project templates

There seems to be a separate DbContext in the Host project as well as a DbContext in the EntityFrameworkCore project in abp.io project templates (at the time of writing). I was wondering what the intended purpose is for these DbContexts? If I want…
ionat
  • 1,979
  • 1
  • 16
  • 15
2
votes
3 answers

How to replicate SQL's ORDER BY NEWID() in ABP framework?

How can I replicate the behavior of this SQL query in ABP framework? The SQL query is: SELECT * FROM App_Profile ORDER BY NEWID() I tried using the following LINQ expression but it did not work - I want to get random records each time, but I got…
byteram
  • 125
  • 8
2
votes
2 answers

ABP Framework: What is the best practice to handle entity parent with entities childs?

I recently use ABP Framework (6.0), and I create a "DemoApp" application for explain my problem: https://github.com/KevinAlvesGroupeBRIAND/DemoApp I have two classes in Domain layer: // Company.cs public class Company :…
Kalves
  • 77
  • 6
2
votes
0 answers

Dependency not injecting While using AddRepositories - ABP Framework(6.0) c#

I am trying to register repositories in a separate module called freeswitch via ABP Framework. Interface is IFSExtensionRepository context.Services.AddAbpDbContext(options => { …
2
votes
1 answer

How to show 'Linked accounts' modal of ABP commercial

I use ABP commercial framework, but in front side I use my own template and menu, so I want to put its linked account menu in my menu. The problem here is that when I click on 'Linked accounts' menu, it shows a modal and does not route to another…
Jalaleddin Hosseini
  • 2,142
  • 2
  • 25
  • 28
2
votes
2 answers

Many-to-Many Relation in EfCore with DDD

I've just started developing apps with DDD using .Net Core,Ef Core and ABP Framework I have 2 aggregate roots ( Ticket and Asset) in my app. A Ticket may have an assigned Asset/Assets An Asset may have assigned Ticket/Tickets I don't want to hold…
2
votes
0 answers

Abp Dynamic Form (Horizaontal View) Razor Page

I am using Abp framework (ASP.NET Core MVC / Razor Pages). I used apb-dynamic-form tag helper to display a dynamic form inside a modal using the below code
s.alhaj
  • 141
  • 2
  • 11
2
votes
3 answers

How to pass empty string to nullable int

I have this property public int? CodigoBanco { get; set; } An when i try to send it to server in this way codigoBanco: "" I have the following error The following errors were detected during validation:\r\n - The JSON value could not be converted…
Heitor Giacomini
  • 384
  • 2
  • 12
2
votes
1 answer

Use Key vault to store default connection string of ABP Framework

We've uploaded my ABP Framework site to an Azure Web application but the default connection string is stored inside the configuration of the web app. Now we want to replace that to an Azure Key Vault and store only the URL inside the…
H. Pauwelyn
  • 13,575
  • 26
  • 81
  • 144
2
votes
1 answer

Abp Framework misses IRepository.AsNoTracking() (or cannot use Select, Where)

In the current version (3.3.1), I used IRepository.AsNoTracking, and it worked well. But when I upgrade Abp to latest version, it cannot work. And here are 2 assemblies with difference structure (there is no IQueryable, not use Assembly…
Anna
  • 51
  • 4
1
2
3
53 54