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
2
votes
0 answers

Asp.Net Boilerplate InsertAsync method not work and return negative id

I want to know which cases entity failed to add and return negative id?
Hanaa Gebril
  • 187
  • 1
  • 13
2
votes
1 answer

Real-time notification upon registration using SignalR

I want to send real-time notification in ASP.NET Boilerplate. Notification is saving successfully in Abp.NotificationSubscription table on subscription. When I publish the notification, the notification got saved in the Abp.Notification table but it…
2
votes
1 answer

DeleteRange function in ASP.NET Boilerplate

How can I delete a list of entities, without using a loop, in ASP.NET Boilerplate MVC? Currently, I use: foreach (var data in sampleDataList) { _iRepositorySampleData.Delete(data); } But I don't want to use a loop to delete multiple entities.
taymyinl
  • 295
  • 4
  • 15
2
votes
2 answers

FullAuditedEntity, ObjectMapper: CreatorUserId Null when Creating New Entry or Deleting

I have been posting data to a Full Audited Entity via the API. As it is FullAuditedEntity, it should automatically be created with creatorId, creationTime and a couple other column values. But when I checked in the database, CreatorUserID is null…
2
votes
1 answer

Disable localization in favor of just English language as default.

I do not want localization support in ASP.NET Boilerplate, please let me know how can I disable it (if possible).
2
votes
3 answers

ASP.NET boilerplate localization

In ASP.NET Boilerplate I am changing language like English It works properly on my local machine, but not on test server. Also when I'm clicking it locally, sometimes there is…
Dawid
  • 153
  • 3
  • 18
2
votes
1 answer

Getting Ambiguous match found exception while calling DeleteAsync

I have a table which has code as primary key instead of Id, When I call DeleteAsync method I get the exception Ambiguous match found. [Table("Test")] public class Test:…
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
2
votes
1 answer

Asp.Net Boilerplate Startup Template - Culture Issue

I've downloaded a startup template for ASP.NET Boilerplate. Having successfully followed the instructions to create and seed the database. When I come to run the application, I'm presented with the following error: Server Error in '/'…
weblar83
  • 681
  • 11
  • 32
2
votes
3 answers

"Current user did not login to the application!" error when function call from service

In a service I have wrote a simple function to get tenant id of particular user [AbpAuthorize] public int? FindTenancyNameByUserNameOrEmail(string userNameOrEmail) { var qry = (from p in _memberRepository.GetAll() …
Nitin Sawant
  • 7,278
  • 9
  • 52
  • 98
2
votes
1 answer

ASP .NET Boilerplate - registering Assembly

I am doing an application on ASP .NET Boilerplate Framework with AngularJS and Entity Framework. For so long i was going with this tutorial…
1
vote
0 answers

abp problem after updating devexpress from 21.1.4 to 21.2.5

i have an asp.net zero project. i've used devexpress 21.1.4 and everything was fine, after updating devexpress to 21.2.5 by project converter extension i got this error : component for supporting the service…
zhp
  • 11
  • 4
1
vote
0 answers

AspNetBoilerplate: Scaffolding for multiple APIs sharing underlying framework

We are building multiple APIs using ASP Net Boilerplate. I already managed to create a single authentication server for all of them with IdentityServer4, and now I'm trying to create a single solution for all of the applications, with different…
1
vote
1 answer

How to sign-in from code behind in abp.io?

I am exploring the abp.io and trying to develop a vary simple test-app. Currently, I've exposed a restful api which users could use it to create a new account using only the mobile phone number. The next step is to sign-in from C# and return token…
1
vote
1 answer

Using ASP.NET Boilerplate without Dependency Injection (DI) Container?

Ironically, the problem DI is trying to solve, is exactly the problem that has been created in the project. Are there any resources for using the framework where i'm capable of picking and choosing which features I want to use/enable and those i…
1
vote
1 answer

Asp.Net Boilerplate Entity notifications

I have Notifications working in a .NET Core web application. However I'm trying to understand the Entity Notification operation. As I read the documentation and tried few coding some scenarios it doesn't seem to be working as I thought it might. My…
Beachdog
  • 121
  • 3
  • 10
1 2
3
13 14