Questions tagged [asp.net-boilerplate]

ASP.NET Boilerplate is a starting point for new modern web applications using best practices and most popular tools. It's aimed to be a solid model, a general-purpose application framework and a project template.

Template

ASP.NET Boilerplate easily creates startup template for your project. It includes most used framework and libraries by default. Also allows you to choice Single-Page (Angularjs or Durandaljs) or Multi-Page architecture, EntityFramework or NHibernate as ORM.

Architecture

ASP.NET Boilerplate implements NLayer architecture (Domain, Application, Infrastructure and Presentation Layers) and Domain Driven Design (Entities, Repositories, Domain/Application Services, DTO's...). Also implements and provides a good infrastructure to implement best practices such as Dependency Injection.

Framework

ASP.NET Boilerplate is an application framework built on latest ASP.NET MVC & Web API technologies. It makes easy to use dependency injection, logging, validation, exception handling, localization and so on. It makes these not only itself but also using most popular framework and libraries.

More information at www.aspnetboilerplate.com

206 questions
0
votes
1 answer

Is there global query SORTERS like query FILTERS in EF core

Is there something like IHaveOrder interface and all entities (classes) that implement it ordered by default when getall()
0
votes
1 answer

Asp.Net Boilerplate Notifications

I have Notifications working in a .NET Core web application using the Abp Boilerplate framework. I've also implemented EmailRealTimeNotifier so that after the Push notification is sent, an Email is sent as well. I'd like to give Users of the…
Beachdog
  • 121
  • 3
  • 10
0
votes
2 answers

SQLException when deploying ASP.NET Boilerplate application to Azure

I've been trying to deploy an ASP.NET Boilerplate application to Azure for the last couple of days and I haven't been able to do so. I keep stumbling upon this error: First I make a Web App + SQL resource and then publish my project to it from…
0
votes
1 answer

ASP Boilerplate always shows the default error message

I am using ASP Boilerplate (MVC + Jquery) to develop two different online applications. It works very good but there is a problem with ABP exception handler in both of them: It always shows the default error message (An error has occurred! Error…
H. beyraghdar
  • 83
  • 1
  • 7
0
votes
1 answer

How to use Entity Framework BulkInsert in Asp.net Zero

I am using ASP.NET Zero to insert large amounts of data from Excel into the database and it is slow. So I thought of using Entity Framework Extensions for BulkInsert but don't really know how to use it.. I get an error The type arguments for the…
ckeedee
  • 87
  • 2
  • 9
0
votes
1 answer

How to send data to back-end of Asp.net Project

I have created a simple form on the Asp.net boiler template project. I have a total of three fields In Table 1 Product name Quantity In Table2 Tags with product List I wanted to store third field data in another table in the database. but I'm…
0
votes
1 answer

How to enable compression in aspnetboilerplate dynamic web api

I tried adding Microsoft.AspNetCore.ResponseCompression in Myproject.web.host And configured this public void ConfigureServices(IServiceCollection services) { //other configs... services.AddResponseCompression(); //other…
0
votes
1 answer

Mvc.ExceptionHandling.AbpExceptionFilter - No Component found

this is a follow-up question to the one posted here earlier today InvalidCastException on an LDAP implementation in ASP Boilerplate as suggested by just.another.programmer I seem to be running into another issue this time having no component…
Raze711
  • 23
  • 5
0
votes
1 answer

InvalidCastException on an LDAP implementation in ASP Boilerplate

Good day all, recently had to implement an Active Directory for our application and we have come across an InvalidCastException when trying to log into the site for the past few days I have been at our wits end trying to figure out what is causing…
Raze711
  • 23
  • 5
0
votes
1 answer

SignalR integration with ABP Angular version

I'm trying to use SignalR library with ABP Application (.NET Core 3.1 with Angular version) but when I came to the last step that is mentioned in the official documentation, I didn't know where I should put the code: var chatHub =…
0
votes
2 answers

Repository insert with navigation property throws 'FOREIGN KEY constraint failed'

I'm using EF Core and sqlite. Given following 1-to-1 entities: public class Entity1:FullAuditedEntity { public Entity2 Entity2 { get; set; } public string Name { get; set; } } public class Entity2: FullAuditedEntity
0
votes
2 answers

AbpSession.UserId is null right after login

I'm trying to implement a command line app using my MyApp.Core, MyApp.Application and MyApp.EntityFramework modules that are working perfectly with a MyApp.Web module. The problem with the MyApp.Console app is the login: once I execute the login,…
Gianpiero
  • 3,349
  • 1
  • 29
  • 42
0
votes
1 answer

notificationPublisher.PublishAsync is not sending notification to tenant

I am trying to send a notification to the tenant but nothing happens, not even record entered to the '[AbpNotifications]' table. I don't know where things went wrong. using (UnitOfWorkManager.Current.SetTenantId(tenantId)) { var notificationData…
0
votes
1 answer

User Management in Multi tenancy with Asp.net boilerplate .NET Core

I created a multitenant application with Abp framework (.NET core 3.1), I noticed that each tenant in the application has isolated user management and isolated roles management. But in my case, I wanna one User Management for all tenants so if I…
Abdulaziz
  • 654
  • 3
  • 12
  • 37
0
votes
1 answer

How to change ASP.NET Boilerplate Role entity Id from int to long

I need to add a new party entity (table). This entity follows party design pattern where user, organization unit and role entity Id is primary key and also a foreign key that links to the party entity primary key. I was able to achieve this with…
kenn3th
  • 1,187
  • 2
  • 22
  • 47