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
1
vote
1 answer

How to conveniently customize the metronic theme in aspnetzero?

Is there an easier way to customize the metronic theme that comes with the aspnetzero framework? I just want to create a single file to override variables in the metronic sass file but it seems like it's not compiling the metronic sass…
1
vote
1 answer

How to publish asp boilerplate project on Ubuntu 16.04 using Docker?

I want to publish my project using ABP to Ubuntu 16.04 with Docker, I'm still confused, where I put the dockerfile in abp project? maybe my dockerfile it's wrong, Here my dockerfile: FROM microsoft/dotnet:latest COPY . /app WORKDIR /app RUN…
1
vote
1 answer

Returning error message using SweetAlert

In AccountController, I notice that the sample registration code catches UserFriendlyException and returns the error message in the ViewBag. How can I return it from a SweetAlert? [HttpPost] public virtual async Task
Anele Ngqandu
  • 115
  • 1
  • 17
1
vote
1 answer

How to change ASP.NET Boilerplate Angular Template UI Theme (Adminbsb)

I'm starting a project with ASP.NET Boilerplate Angular Template but I want to change the UI theme for another as Core UI theme. someone who has worked with ASP.NET Boilerplate Angular Template could help me?
1
vote
2 answers

Invalid Tenancy Name

I am working on an ASP.NET Boilerplate service project. When I am saving a client, it returns an error: Tenancy Name is not valid The tenancy name contains spaces. TenantDto maps to Tenant object without any error. Database table TenancyName…
1
vote
0 answers

Deployment of ASP.NET Boilerplate on Azure - Not redirecting after login

I'm working on a project that is built with ASP.NET Boilerplate. The template that I use is .NET Core with Angular, including Module Zero. When I work locally (npm start), everything works as expected. When I deploy prod build (ng build --prod) on…
1
vote
2 answers

Authorization on Dynamic Web API Controllers

How to use AbpAuthorize or AbpAllowAnonymous attributes? What's the default behaviour for these controllers? Could not find in docs.
1
vote
1 answer

Net standard Library missing reference in ASP.NET Boilerplate

every time i clone Abp.ModuleZero to my machine when i run nuget command update-database the error show me and when i build the solution in viusal studio the project doesn't build and show many errors in error list console window most of them is…
1
vote
2 answers

How to serialize a form with an array of input

I'm trying to serialize a form that can contains an array of object and send it to my application service and i cannot find any way to make it work... Here is my Save Method var brewer =…
Vince
  • 1,279
  • 2
  • 20
  • 40
1
vote
1 answer

ASP.NET Boilerplate & Windows service

I am creating a simple ASP.NET solution that is based on the ABP and as a part of this solution I use a standard Windows service that is supposed to do small background operations (so far only ICMP ping, but later probably more). Is it possible to…
Martin Slezák
  • 181
  • 2
  • 11
1
vote
0 answers

Deployment of boilerplate with asp.net core and angular 2 application

I am trying to deploy boilerplate framework asp.net core with angular2 application in IIS and localDB. I am not aware of deployment. can you please give me the steps for the same. Thanks in advance.
Rishu
  • 43
  • 7
1
vote
2 answers

How to make composite unique key in ASP.NET Boilerplate?

I have a table which has the Id as primary key, I want to have a composite unique key on Code and Value column. I'm trying in this way. [Table("Test")] public class Test:…
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
1
vote
1 answer

How to get exactly all users from database

In ASP.NET boilerplate project. I have a database with users. I am using standard methods for retrieving them _userRepository.GetAll() and deleting _userRepository.Delete(id). By default when user id deleted it is still kept in database with…
Dawid
  • 153
  • 3
  • 18
1
vote
1 answer

SPA done with ASP.net Boilerplate free template, login only works IE11 if developer tool are open

I experiencing an issue with IE11. I created a SPA project with ASP.net Boilerplate selecting .NET Core 1.1 (https://aspnetboilerplate.com/Templates). The application works in Chrome, Firefox and Edge. The issue is with IE11 on windows 7. It does…
1
vote
1 answer

How to add Typescript type definition generation in asp.net boilerplate

I've seen issue #415 solved for generating typescript files for ABP. A couple of mount ago I started a project based on the ABP template, Angular1 and EF but till now I have not found the way to add this feature to my VS project. I have given a…
Gianpiero
  • 3,349
  • 1
  • 29
  • 42