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

AngularJS testing with Jasmine

I'm a newbie to programming and I'm trying to figure out how to unit test angularJS code with jasmine, and its driving me insane! This is the angular code im trying to test, its all set up on an asp.net web application using abpBoilerplate and…
taxer03
  • 63
  • 2
  • 5
0
votes
2 answers

ABP - How delete depended items from entity - entity framework

i have this entity Page: public class Page : FullAuditedEntity, IMultiLanguageEntity { public string Name { get; set; } public string Content{ get; set; } public Page() { Translations = new…
0
votes
1 answer

After the Automapper mapping where objects go to null values

public class CreateOrEditOwnerDetailInput : IInputDto { [Required] public OwnerDetailEditDto OwnerDetail { get; set; } } [AutoMap(typeof(OwnerDetail))] public class OwnerDetailEditDto { public const int…
Sampath
  • 63,341
  • 64
  • 307
  • 441
0
votes
1 answer

How do I deploy ASP.NET boilerplate WebApi class library as a stand-alone web service?

I am using ASP.NET boilerplate for the first time. I have been able to apply the ApplicationName.Core, ApplicationName.Application and ApplicationName.ORM (NHibernate) libraries with success. However, I need to make my application services available…
0
votes
1 answer

abp.auth.gantedPermissions is always empty

I am trying to follow these examples: http://aspnetboilerplate.com/Pages/Documents/Authorization Everything works fine in backend, but in JavaScript frontend, abp.auth.gantedPermissions is empty. I'm probably missing something but I have no clue…
TTT
  • 1,848
  • 2
  • 30
  • 60
-1
votes
1 answer

ReceiveMessage does not work with abp.signalR

I'm using abp.signalR but I've encountered problem-related to ReceiveMessage event, I wanna know once the message is received I tried below code but nothing happened :\ this.chatHub.on("ReceiveMessage", (username: string, message: string) => {…
Abdulaziz
  • 654
  • 3
  • 12
  • 37
-1
votes
1 answer

How to redirect to login page in ABP?

I download the .NET Core sample from ASP.NET Boilerplate website, change the DB connection string, update DB, run Web Api, show the Swagger successfully, add a Home/Index View, change Home/Index action to return the View, not Swagger, run again,…
-1
votes
1 answer

Asp.net Boilerplate with databaseFirst Approch

Is it possible to use Asp.net boilerplate with database first approch in ASP.Net MVC? Yes than How?
-2
votes
1 answer

How do you construct an Entity class to fetch another Entity from repository?

This is a C# Question, using .NET framework built on Asp.NET Boilerplate. Again, to re-emphasis the question being asked is "HOW...", so if an answer that was provided was a url link or a descriptive explanation on how something was supposed to be…
-3
votes
3 answers

How to add Column in existing table in asp Boilerplate?

As you know Boilerplate don't give the entity classes to add columns and I want to add column in table named ( AbpUser). I tried to make a class in Migrations like below public partial class AddRatingMig : DbMigration { public override void…
-5
votes
1 answer

Asp.Net Boilerplate... How to update a record in Existing tables in Database using Async methods?

I am working with ASP.Net Boilerplate. I want to send isActive=true to the AbpUser table when a user is confirmed by email. How can I access the database and do a query on that? As you know Boilerplate doesn't provide entity classes so I am working…
1 2 3
13
14