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

Error running multi-tenant saas angular client project

I was trying to test EventCloud Multi-tenant Saas (.Net Core + Angular SPA) locally but it throws this error found in debug log file 0 info it worked if it ends with ok 1 verbose cli [ 'C:\\Program Files (x86)\\nodejs\\node.exe', 1 verbose cli …
0
votes
2 answers

How to invoke an IApplicationService into a WCF SOAP services in abp Boilerplate?

I developed a MVC application using abp boilerplate and now I have the necessity to expose some services via WFC/SOAP. The idea is to create a WFC Service, inject the required IApplicationService and use it. Something like: // this code does not…
Gianpiero
  • 3,349
  • 1
  • 29
  • 42
0
votes
1 answer

AspnetBoilerplate LazyLoading not working

I'm having some problem with LazyLoading on the response of the AsyncCrudAppService Create method. After the objects creation, it returns the respective EntityDto but the classes inside aren't loaded. Ex:image Notice that the feature object "loaded"…
Testador
  • 339
  • 1
  • 3
  • 7
0
votes
1 answer

UI-Select is dislocated on focus when using with gurayyarar AdminBSB Material theme in aspnetboilerplate(MVC & AngularJs)

I am trying to use ui-select in aspnetboilerplate startup template of MVC5 & AngularJs. The template uses AdminBSB Material based theme. But it behaves awkward. When I click to select any item, it will fall down and show the list. After selection,…
0
votes
0 answers

How to implement Cascade on Delete Using Asp.coreBoilerplate Entity Framework?

I want to implement Cascade on delete functionality for asp.net core boilerplate. But I am unable to do so? Here is what I have done to do this. Company is the parent Class: public class Company:FullAuditedEntity { public string…
0
votes
1 answer

Localization via cookies in ASP.NET Boilerplate

I have a question and a problem. First off, I am trying to separate the login screen language and the application language — so that when a user logs out in German, the login screen is in English (or vice versa) and when he logs in, it doesn't…
bMikolaj
  • 39
  • 1
  • 7
0
votes
0 answers

Problem using Test Framework 'Effort' with ASP.NET Boilerplate

I'm having a problems in my tests using Effort in an ABP project. As far as I understand, my problem is with the EntityFramework.DynamicFilters and there's a issue in GitHub talking about this. But there does seem to be a work-around that works for…
0
votes
1 answer

Download excel(NPOI) by write data to response from dynamic webapi

I use .net core2 ASP.NET Boilerplate. Because my webapi is dynamic created from application. In application architecture there is no “return File()” method because of not inherit from .net core mvc controller. So I want implement downloadFile by…
wangzg
  • 13
  • 7
0
votes
0 answers

Referencing Abp framework in AbpZero project in solution doesnt work

I dont want to use Nugets. One project is utilizing a framework that i would like to keep under modification and construction so that i have the changes made one time throughout the entire solution. Both solutions (Abp:ASP.Net Boilerplate and…
0
votes
1 answer

How to make another page the default page in asp.net boilerplate and Angular

I've created a new project using the asp.net boilerplate a so it comes standard with the default landing page as the login page. So is it possible to create a new component and change the default landing page to the component that I have just…
Tebogo Langa
  • 47
  • 1
  • 10
0
votes
1 answer

Create controller with service — Get... is not a function

In an ASP.NET Boilerplate project, I have the following code: (function () { appModule.controller('augustinum.views.kostenstelle.index', [ '$scope', '$uibModal', 'abp.services.app.kostenstelle', function ($scope,…
0
votes
0 answers

ASP.NET boilerplate Display error for decimal in french language

I have an error when I display a decimal value. I use two languages ​​(English / French) and the problem only concerns the French language, with English language the value is displayed correctly and I can modify it. Error message: The specified…
0
votes
1 answer

AppService returns DTO with null Id

I am implementing AppService and DomainService. DomainService: public class TagsManager : IDomainService { private readonly IRepository _tagRepository; private readonly IUnitOfWorkManager _unitOfWorkManager; public…
Edward
  • 28,296
  • 11
  • 76
  • 121
0
votes
1 answer

App Service with hyphen in http parameter

So we're busy with an ABP project and struggling to specify the http parameter to map to the app service parameter. Mailgun's Webhook uses "Message-Id" as the http parameter and we are struggling to access that from an app service. Here is our app…
0
votes
1 answer

How to navigate to Home page from Application logo?

I'm using ASP.NET Boilerplate. I want to navigate to Home page when I click on Application logo. But I cannot find any method to change its click behavior. topbar.component.html
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197