Skip to main content

All Questions

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
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
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
3 votes
2 answers
552 views

Overcoming circular reference

I am working on an asp.net MVC web application which contains several projects. One is BusinessObjects, which contains business logic / processes. Another is EmailGeneration which is used to send ...
Kev's user avatar
  • 167
10 votes
2 answers
19k views

Should I cache the data or hit the database?

I have not worked with any caching mechanisms and was wondering what my options are in the .net world for the following scenario. We basically have a a REST Service where the user passes an ID of a ...
JD01's user avatar
  • 1,289