Unanswered Questions
67 questions with no upvoted or accepted answers
5
votes
0
answers
947
views
Identity and access management in Clean Architecture and MVC design
The application user has a lot of standard functionality we see in most applications. At a high-level, this includes some form of authentication, authorization, and session management. At a low-level, ...
5
votes
0
answers
3k
views
DDD directory structure for MVC app
As a means of learning and gaining some experience with domain-driven design, I'm restructuring/refactoring an old application written in PHP which utilizes the Laravel 5.1 framework. Below is a mock-...
4
votes
0
answers
2k
views
Any "Gotchas" to using Entity Framework for Identity & Dapper for all other DB access in a .NET MVC application?
I'm firing up an MVC project in which I'd really like to use Dapper as my ORM, as I like to be as close to the database as possible for performance and SQL tweaking reasons, yet still have the power ...
3
votes
0
answers
992
views
MVC vs Layered vs Client-Server
On this book (Software Architecture, 10th Edition by Ian Sommerville, ISBN: 9781292096131), the following architectural patterns are presented (Chapter 6, 6.3, p175):
MVC
Layered
Client-server
...
3
votes
0
answers
103
views
Creating bindable input handler in C++ spanning two separate modules
I have a wxWidgets application. This is the first, main module. The second module is an openGL engine. It's a model-view-(controller) structure, where application is the view (and the controller), ...
3
votes
0
answers
429
views
Multiple Entity Business Logic/Changes, C# MVC Repository Pattern
I have a standard C# MVC project which has a domain layer using EF and repository pattern. Say I have a model like:
public class MainModel
{
public int MainModelID {get; set;}
//Many other ...
3
votes
0
answers
174
views
MVC Sites and Entity Framework (using DbContext)
I've been looking at a couple of the MVC tutorials on the ASP.NET website and and have noticed numerous of them make use of Entity Framework (especially the Identity provider stuff).
Maybe my ...
3
votes
0
answers
2k
views
How to pass control between sub-controller to parent controller in Java MVC Design Pattern?
I'm pretty new in Java, but I've done plenty of research and I know what MVC is. However, to implement MVC in Java was a difficult task. I followed this tutorial, which helped me to realise that the ...
3
votes
0
answers
170
views
Should I inject a data dependency into an Angular Directive?
I am currently implementing an AngularJS directive.
It is fundamentally a reusable widget comprised of a select box and a table which populates based on the item in the select box.
My point of ...
3
votes
0
answers
440
views
MVC: view/sidebar.php can load model?
I have a Route that activates a Controller which returns to me a page through a View. Let's call it master page.
route -> controller -> view [master page]
The master page is divided into header, ...
2
votes
0
answers
76
views
Do MV* architectural patterns apply not only to OO languages but also functional languages?
I am learning about MV* architectural patterns, thanks to the help from several answers here. I learned that they are used for designing the architectures of user interactive applications.
I also ...
2
votes
0
answers
656
views
N-Tier/Layered Architecture with MVC
Do N-Tier/Layered architecture really helpful with MVC? I have some projects here that use N-Tier architecture with MVC.
The available layers are
Entity Layer
Data Layer
Business Layer
Presentation ...
2
votes
0
answers
236
views
Why separate routes and controllers in MVC backend applications?
I've dabbled in a few MVC frameworks (like Rails and its ilk) and I've noticed that the file that defines restful routes often go separate from controllers which hold the actions executed through ...
2
votes
0
answers
484
views
MVC 5 - Best practice for handling dates inside and outside the USA
I have an MVC 5 application that will be used world wide. A number of the pages in the app will require users to enter dates. I'll be using the jQuery datetimepicker plug-in to allow the user to ...
1
vote
0
answers
141
views
ASP.NET MVC use ViewModels with Services
I'm trying to make a simple Blog-application, but I'm a bit stuck on the architecture of the application.
I'd like to create a details-page with the content of the blog-post and a form for adding ...