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

ASP.NET BOILERPLATE: javascript to call application service

ASP.NET BOILERPLATE: I have a table Asset for which I have created AssetApplicationService with base class CRUDAsync; I have wired up AssetController, & appropriate DTO's, I am able to retrieve data and show on the list as similar to user…
0
votes
1 answer

ASP.NET BOILERPLATE: how to dynamically create master entity pages with CRUD operations and also presentation layer

I have around 50 master tables that requires simple and straight forward CRUD operations, my tables are already available in the sql database. My question is how to make it generic so that I dont need to create manually each individual page for…
0
votes
2 answers

Asp.Net Boilerplate...How to search in existing tables?

I want to apply queries on Boilerplate default tables in database. But boilerplate uses async methods. How to search in database by Boilerplate framework.
0
votes
1 answer

Maintain Multi-Level Menu Selection

Using one of the ASP.Net MVC5 templates, how can I maintain menu selection when selecting an item from a multi-level menu? When a sub-menu is clicked, the page loads but there is no indication which menu item has been clicked. It is possible to…
weblar83
  • 681
  • 11
  • 32
0
votes
1 answer

Create stored procedure in seeding of ASP.NET Boilerplate

How do I run a SQL command during seeding on ASP.NET Boilerplate? I need to run a complicated query so I think it will be easier to use a stored procedure to offload the computing onto SQL Server. I've successfully created a custom repository which…
Andre Odendaal
  • 557
  • 6
  • 19
0
votes
1 answer

Asp.net core cloudflare ssl Blocked Mixed content using unobtrusive-ajax

I have recently set up a website that uses cloudflare free ssl. When using ajax calls for pagination I get a mixed content error, I assume because it's still at some point transmitted over http!? I tried using the instructions for https redirect…
0
votes
1 answer

ABPOData + EF Model with custom calculated properties

I'm using Web API + AbpOData + EF and need to calculate some properties of the objects returned from the database on the server. The basic code looks something like this: [AbpApiAuthorize(AppPermissions.OData_Permission_Consume)] public class…
0
votes
1 answer

Composive Primary Key on ASP.NET Boilerplate

I'd like to know if using ASP.NET Boilerplate with EF, is it possible: Use the composive Primary Key in EF. I have seen many samples with only one column in TPrimaryKey in Repository. The column's name of Primary Key is required call "Id". I…
Julio Spader
  • 349
  • 4
  • 7
0
votes
0 answers

using abp to generation code ,include controller and view

I wanna using abp to generating code ,The follow is my setup. 1.select database table field.(field type,like text password or dropdownlist) 2.set search option 3.generation code(include CURD and view.html) How do I to do it?and how to generation…
Miles
  • 33
  • 3
0
votes
1 answer

Cannot figure out Client Error

In an ASP.NET Angular Application, I have a particular method I am calling through angularJS to display some data from the database, but doing so, I get an error that states "An Error has occurred. Error detailed not Sent by the server." I confirmed…
Kacey Ezerioha
  • 1,068
  • 4
  • 22
  • 46
0
votes
1 answer

ASP Boilerplate problems using Effort in unit testing with EFProf (Entity Framework Profiler)

Having issues using EFProf (http://www.hibernatingrhinos.com/products/EFProf) with ASP Boilerplate (http://www.aspnetboilerplate.com/). For unit testing, ASP Boilerplate uses Effort (https://github.com/tamasflamich/effort) for mocking the database…
0
votes
2 answers

Aspnetboilerplate - AngularJS not reaching the AppService?

I downloaded the ASP.NET MVC with AngularJS and Entity Framework, module zero sample. I added an entity called DivePlan, with only one string property name for now. namespace PlanMyDive.DivePlan { public class DivePlan : Entity { …
0
votes
1 answer

Auto mapping one to one foreign keys in asp.net boilerplate

Suppose I have the following class structure: public class Pizza { public int Id { get; set; } public virtual PizzaType PizzaType { get; set; } } public class PizzaType { public int Id { get; set; } public string Name { get; set;…
0
votes
0 answers

How can handle request before they come into the API action in ASP.NET MVC Boilerplate?

In ASP.NET MVC Boilerplate API Controllers generating from Application Services dynamically. For example I need to throw an exception before request go into the action/method. How handle request? Thanks! public class UserAppService :…
0
votes
1 answer

Error "No component for supporting the service Abp.MultiTenancy.ITenantIdResolver ..." when adding Asp.net boilerplate to an existing application

I'm taking my first steps with Asp.net boilerplate. I ran the sample projects fine. Now, I'm trying to add Asp.net boilerplate to an existing application. I haven't found a step by step tutorial to add Asp.net boilerplate capabilities to an existing…
Marcos
  • 151
  • 1
  • 9
1 2 3
13
14