Questions tagged [aspnetboilerplate]

Use this tag to ask questions about the previous ASP.NET Boilerplate, a web applications framework. Bug reports and feature requests should be posted to GitHub. For the successor use [tag:abp]

ASP.NET Boilerplate is an open source web application framework and the predecessor of .

Use GitHub for your bug reports and feature requests.

1376 questions
5
votes
2 answers

Could not load file or assembly system.memory version 4.1.0.0

I have asp.net core project which runs on Asp.Net Core V2.1.0 which has signal r integrated. I have downloaded a sample project from aspnetbrolerplate. When I try to run the application it gives me following error. System.IO.FileNotFoundException:…
ISHIDA
  • 4,700
  • 2
  • 16
  • 30
5
votes
1 answer

How to use ASP.Net Boilerplate Modul Zero Vue.js template?

I downloaded the free template for a single-page application with ASP.Net Core 2.x and EntityFramework Core 2.x. version 3.9.0. After unpacking the archive, I did not found the project ProjectName.Web.MVC in the solution. If I understand correctly,…
XelaNimed
  • 301
  • 5
  • 18
5
votes
1 answer

CSS not working in ASP.NET Boilerplate

I'm trying to implement the same CSS for an input of type text as similar to the one we have in CreateUser default page. So when you click on User Name textbox it shows a blue line under it. Same I tried on my page it works fine, but when I go to…
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
5
votes
1 answer

Deploy ASP.NET Boilerplate Core & Angular to Microsoft Azure

I would want to deploy ASP.NET Boilerplate Core & Angular to Microsoft Azure. The current version of ASP.NET Boilerplate contains two solutions (one for the backend and one for the frontend) so i need to deploy it to two different AppServices and a…
Marius Istudor
  • 165
  • 2
  • 10
5
votes
2 answers

ASP.NET Boilerplate: Get and GetAll is POST instead of GET method

I'm using the ASP.NET Boilerplate framework to do a small project and I used Swagger UI Integration to check the API within the project. I noticed that the Get and GetAll are still using POST method while the others are in their respective HTTP verb…
DaveL
  • 73
  • 1
  • 11
5
votes
2 answers

EF Core - adding/updating entity and adding/updating/removing child entities in one request

I am struggling with what seemed to be a couple of basic operations. Let's say I've got a class named Master: public class Master { public Master() { Children = new List(); } public int Id { get; set; } public…
5
votes
1 answer

How to use caching in ASP.NET Boilerplate?

I have some master data in DB which I need throughout my application. So What is the best way to define this data in the application? and Where should I define in the application so that every time applications starts I will initialize this master…
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
5
votes
1 answer

ASP.NET Boilerplate change EmailSettingNames

According to the documentation on Email Sending: Email Sender uses setting management system to read email sending configuration. All setting names are defined in Abp.Net.Mail.EmailSettingNames class as constant strings. I need pointers on how…
Sleek
  • 211
  • 3
  • 11
5
votes
1 answer

Check user roles from Application Service

i'm implementing Application Service that sends statistical data to home page (dashboard application page). Based on User's Role (the service needs authentication) i would extract/aggregate data from database using WhereIf() based on is role In…
Saro
  • 160
  • 1
  • 11
5
votes
2 answers

Add-Migration Created Columns Alphabetically Asp.Net Core 2.0

I have created a model and run command Add-Migration in PMC. it created columns in alphabetically order in migration. After updating database sqlserver table are also in alphabetically order. I want the same order which i used in my original model…
5
votes
1 answer

How to resolve these warnings in ubuntu?

I cant understand the nature of this problem. I provide stacktrace what i've got: kestrel.service - ASP.NET Core Application running on Ubuntu Loaded: loaded (/etc/systemd/system/kestrel.service; enabled; vendor preset: enabled) Active: active…
Britto
  • 53
  • 1
  • 4
5
votes
2 answers

set LocalizationSourceName in domain service

I have got a class extending DomainService abstract class as below: public class ScheduleManager : DomainService, IScheduleManager The following line does not work: throw new UserFriendlyException(L("ScheduleIsNotValid")); because…
Mohammad Shadmehr
  • 675
  • 11
  • 26
5
votes
2 answers

Custom mapping with asp.net boilerplate and Automapper

I am new of ASP.NET BoilerPlate (ABP) and I am trying to understand how to create custom mappings using AutoMapper and, maybe, the ABP automapper attributes: AutoMap, AutoMapFrom, AutoMapTo. With ABP I can map two classes in this…
Gianpiero
  • 3,349
  • 1
  • 29
  • 42
4
votes
5 answers

JavaScript heap out of memory on Azure build

I' m using aspnetboilerplate with Angular and .NET Core. When i try to deploy application on Azure it shows: FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory This is my azure…
C1X
  • 665
  • 4
  • 14
  • 25
4
votes
1 answer

Entity Framework Core 3.1.1 : Where query could not be translated. Either rewrite the query in a form that can be translated,

After I upgraded Entity Framework Core from 2 to 3.0.0 and 3.1.1, my code broke on Linq .Where clauses. I wouldn't use .AsEnumerable exampleFilter = new List(){"filter1" , "filter2"}; var…