Skip to main content

All Questions

Tagged with
-1 votes
1 answer
255 views

ASP.NET Web API - what is the design pattern?

In Visual Studio, ASP.NET MVC project template is designed for MVC pattern, but what about ASP.NET Web API project template? I know that we can create API from MVC project, also we can build MVC app ...
veryfreaky's user avatar
1 vote
0 answers
208 views

Does my ASP.NET architecture implement DDD in a safe and future proof way?

I'm very new to DDD and sometimes confused by it because many people inside the DDD community tend to have very different approaches when it comes to implementation. I tried to summarize all what I've ...
nikstffrs's user avatar
  • 111
2 votes
1 answer
513 views

At what point does a microservices architecture become "worth it" vs. a monolithic ASP.NET web application?

I'm the maintainer of an ASP.NET WebForms application and am contemplating a refresh of the application in order to eliminate dependency on some legacy libraries, add some features, fix some areas ...
Matt's user avatar
  • 2,232
2 votes
2 answers
821 views

3 layer architecture In DI based software

I'm building software with 3 layer architecture and asp.net core , as you know the Dependency Injection is Built Into Asp.net core As i know the 3 layer architecture diagram is like this: ...
Mohammad Ansari's user avatar
0 votes
2 answers
392 views

Building Client Specific Application on Top of Standard Application

I have a standard application and in this case, it is an Accounting ASP Net MVC application. Now, I have a new client that has their own specific requirements like other fields and some custom ...
Lawrence's user avatar
  • 135
1 vote
1 answer
801 views

Correct approach to pass data to service layer

I'm curious what's considered the (best) correct way to pass data to a service layer in ASP.net Core. Say I have a Person entity that has a relation to a Image (profile picture) entity and another ...
jerojitov's user avatar
1 vote
3 answers
905 views

Where to apply multi-tenant logic (ASP.Net Core)?

I'm developing a multi-teant SaaS application in ASP.NET core mvc and I was wondering what the general approach is to applying tenant logic in a shared database scenario (TenantId for each entity). ...
yuro.dvatov's user avatar
2 votes
2 answers
466 views

WCF vs ASP.NET - Binary IPC

I have a windows service and a remote IIS server that need to communicate without any user interaction. As I can’t guarantee the two machines will be on the same network; the service will connect to ...
user1868265's user avatar
3 votes
1 answer
3k views

Is .NET ASP MVC core suitable for rapid web development?

I currently work for a company who builds web applications for businesses and entrepreneurs, typically 4-6 projects per year. We currently use Laravel/PHP which allows us to build apps relatively ...
Brad's user avatar
  • 435
0 votes
1 answer
436 views

I'm looking for some solution architecture advice for ASP.NET Core and WebApi [closed]

I know that the way you set up your solution and working environment is subjective at best, but I'm looking for some guidance and possible examples for structuring a solution that uses ASP.NET Core, ...
Yanayaya's user avatar
  • 117
0 votes
2 answers
2k views

Integrate Web API Services with multiple authentication services

In a multi-tenant deployment of Web application, How can the Asp.Net Core Web API services be designed to work with different authorization services? The Web applications use OAuth and JWT Bearer ...
KDR's user avatar
  • 153
0 votes
3 answers
285 views

Designing a CMS. When to use interfaces properly and dependencies and layering

I am building a CMS and need guidance on how to structure the application. I simply do not understand when I should use interfaces or an abstract class. The system being built is using .Net Core and ...
user avatar
1 vote
1 answer
365 views

Architecture for email service API

I would like to build an application for sending emails. So I chose ASP.NET Core (API) which will be deployed by Docker. The application will get some request and "do some things" and then sends ...
mskuratowski's user avatar
4 votes
3 answers
3k views

Is Business layer required when all it does it call data layer function

I have inherited ASP.Net Web form code. Here the business layer is just calling the function of data access layer. For example public string GetCountry(int countryCode) { MyDLSrv obj = new MyDLSrv()...
Milind Thakkar's user avatar
0 votes
2 answers
197 views

Where Should I put data related to more than one entity?

Right Now I design Time & Attendance System. If I have the following entities : Shift (Id,Name,start_time,end_time, ...etc) EX :1,Morning,08:00,16:00 WorkSchedule (Id,Name,Type,...etc) EX :1,...
Anyname Donotcare's user avatar
1 vote
1 answer
111 views

Why Entity framework default behavior is diconnected

I have read about connected model and disconnected model in the main ORM of Microsoft EF . And found that the default behavior is the disconnected . Then i read about the relationship between these ...
Anyname Donotcare's user avatar
2 votes
2 answers
524 views

What's the suitable pattern to create a wrapper around the content of the application

I want to wrap every next web application with A top menu and right menu like this : Every new application should be integrated in this master wrapper. I thought to create a master page for the ...
Anyname Donotcare's user avatar
4 votes
2 answers
2k views

Advice converting a multiple-project ASP.NET WebForms website to MVC (using VS2015)

We inherited a large ASP.NET website built entirely in WebForms. The website has over 200 pages, spread across 60 WebForms projects inside of the website's solution. About half of the pages are static ...
Organic's user avatar
  • 141
4 votes
1 answer
874 views

How to build notification system in Azure

I have a system running in Azure that accepts messages via a REST endpoint. The customer has a certain number of devices that send some data for example temperature and we present this data in a web ...
Stilgar's user avatar
  • 1,514
2 votes
2 answers
1k views

How to build a product modeling framework

We have a legacy ASP.Net application (written in c# a few years ago) which allows a factory manufacture a number of custom-made products. Different attributes such as color, length, width, etc. are ...
cloucas's user avatar
  • 47
24 votes
2 answers
28k views

Benefits of using separate API and UI servers for Web application

At work, we have a large internal application which has been under development for close to 2 years now; I've just recently joined the project and some of the architecture has me slightly perplexed, ...
Stephen Byrne's user avatar
1 vote
1 answer
76 views

MVC .NET APP Program Structure [closed]

I am just building a MVC .NET application, eventually this will use entity framework and the repository pattern to structure the program. The first release however will only be calling other jobs that ...
Simon Nicholls's user avatar
1 vote
1 answer
625 views

Clarification on MVC Architecture Overview

I'm doing an MVC 4 architecture diagram for a report and since I'm relatively new to MVC,i was wondering could some one clarify with me is REST (HTTPPOST etc) between view and controller, or ...
Stephen Hegarty's user avatar
1 vote
1 answer
251 views

Layers of confusion (abstraction)

I have been assigned to a project where the end-product is a website as a music community. So it's uploading of music, sharing it amongst other users, listening to music from the website and so forth. ...
frostings's user avatar
  • 660
3 votes
1 answer
364 views

Web API Design advice

I am developing a Web API as services layer for a ASP.NET web forms application. There are two controllers ContractorController (gives details about the contractor) and PaymentsController (gives ...
Sri Harsha Velicheti's user avatar
-2 votes
1 answer
167 views

What changes in .NET software architecture have taken place in the past couple of years? [closed]

I've been away from hands on development work for the past couple of years and focusing more on delivery management. I'm looking to get a couple of new projects ASP.NET MVC apps off the group and I'm ...
AndyM's user avatar
  • 97
4 votes
3 answers
6k views

Calling Web API vs adding reference to underlying dlls [closed]

This is more of an Architecture question, and I want to know all the possible pros and cons of the approach. In my org, we have an ASP.NET Application say "A", a Web API Project say "W", and ...
Guanxi's user avatar
  • 163
1 vote
1 answer
300 views

Git-based storage and publishing, infrastructure advice

I wanted to get some advice on moving a system to "the cloud" ... specifically, I'm looking to move into some of Windows Azure's managed services, as right now I'm managing a VM. Basically, the system ...
Joel Martinez's user avatar
1 vote
1 answer
944 views

Long running task initiated in the web site

The plan is to develop generic solution for long running task initiated in web site by users such as: 1. upload large file and do some custom processing and then insert in the database. 2. export ...
user1663715's user avatar
2 votes
1 answer
3k views

How to handle hidden folders on deployed website

Our security team at work did a security scan of our soon-to-be-deployed website and one of the items that was found was "Hidden Directory Detected". It shows up for 3 different folders, aspnet_client,...
ganders's user avatar
  • 411

15 30 50 per page