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

uib-dropdown dislocated when using in ui-grid cellTemplate

I want to show a uib-dropdown menu in a ui-grid cell. I've given that and its working fine. But the problem belongs to its position. uib-dropdown opened in cell The shown drop-down menu is of the first row. The menu for the 2nd row will be shown…
1
vote
0 answers

Can I connect to a SQL Server database without DBContext in .NET Core?

Can I connect to a SQL Server database without DbContext in .NET Core? I have tried this code, but it doesn't work, I have DEBUG it and I got an empty datatable public class HomeController : Controller { public IActionResult Index() { …
217LeeSin
  • 123
  • 6
1
vote
1 answer

asp.net boilerplate: value cannot be null. Paramater name: key

I'm trying to create a record in db but I take this error at below. This is the error ArgumentNullException: Value cannot be null. Parameter name: key System.Collections.Generic.Dictionary.FindEntry(TKey…
Ensar Eray
  • 66
  • 1
  • 7
1
vote
0 answers

Dynamic Filter ASP.NET Boilerplate

I have problem with Dynamic Filters in ASP.NET Boilerplate. Multi tenancy is off Configuration.MultiTenancy.IsEnabled = false; When I send query to DB @DynamicFilterParam_000003 should be 1 as every Tenant Id in DB but it has value of 0.I…
netdev
  • 11
  • 2
1
vote
1 answer

What's the point of running an EF migration when you can SQL directly in database?

How to create View (SQL) from Entity Framework in ABP Framework Not allowed to post comments because of reputation. Just trying to get more information on connecting a database to an Entity Framework, without having to switch to a code-first…
1
vote
0 answers

I want to hard delete from table in asp boilerplate framework

I have a problem in permanent delete from table in asp boilerplate framework but it is not happen in my code.
1
vote
1 answer

Test fails asp.net boilerplate. Abp.AbpException : There is no permission with name: Pages.Users

When I run web.mvc project (of asp.net boilerplate template) the following exception is throwed: Abp.AbpException: There is no permission with name: Pages.Tenants. I updated database. How to fix these problems? Thank you
uzarra
  • 11
  • 4
1
vote
2 answers

Asp Net Boilerplate - why it auto set isEmailConfirmed is true

I using Asp Net Boilerplate to create API for website. And I have problem when publish it to server. Sometimes the user account is set isEmailConfirmed = true without confirmation email or setting this property? I don't know the reason why. Could…
1
vote
0 answers

Post Back To ASP.NET Boilerplate

NET Boilerplate Core project that redirects a user to an external payment gateway but when the gateway redirects back to the given url it redirects but i just get a screen that says cannot post. I don't know if someone has ran into this problem…
1
vote
1 answer

How to change icon of Sidebar Menu item in ASP.NET Boilerplate?

I'm trying to change the sidebar menu item, but it's not working properly. I'm trying to use mobile icon. new MenuItem(this.l("Devices"), "", "menu", "", [ new MenuItem(this.l("Mobile"), "Pages.Mobile", "mobile", "/app/device/mobile") …
Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197
1
vote
1 answer

asp.net-boilerplate host swagger login, how?

I am new to swagger and I have done several projects with asp.netboilerplate and its an awesome framework. However just a simple question. I did an authorise from the swagger ui for the event host sample app but the swagger ui says that I still need…
user104151
  • 21
  • 4
1
vote
2 answers

Add-Migration not working with MySQL

I have downloaded Asp.Net MVC 5.x Single page web application from https://aspnetboilerplate.com/Templates. I'm using MySQL and followed the steps mentioned in link https://aspnetboilerplate.com/Pages/Documents/EF-MySql-Integration. But when I run…
1
vote
3 answers

Using both database operation and external method in Unit of Work

About Unit Of Work Pattern : Unit of Work design pattern does two important things: first it maintains in-memory updates and second it sends these in-memory updates as one transaction to the database Assume that I need to use a web service…
Adem Aygun
  • 550
  • 2
  • 6
  • 25
1
vote
1 answer

ABP version update using NuGet package manager

I have been tasked with creating a screen on an existing website that uses ASP.NET Boilerplate, to track the changes of entities and who made the changes. When I go into NuGet package manager to update ABP version, which was at version 0.9.5, I can…
sinspeel
  • 30
  • 5
1
vote
2 answers

Refresh permissions from in-memory cache with ASP.NET Boilerplate

When I explicitly set a permission for a user in the database by running a SQL update script, the particular permission with the latest grant is not reflecting in the system. However when I recycle the IIS process or rebuild the solution, it only…