Click here to Skip to main content
15,887,214 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
AnswerRe: ASP.NET - using microsoft enterprise library for heavy traffic sites Pin
Eddy Vluggen30-Oct-12 1:09
professionalEddy Vluggen30-Oct-12 1:09 
GeneralSuggestions for Windows 8 application Pin
WebMaster23-Oct-12 22:37
WebMaster23-Oct-12 22:37 
GeneralRe: Suggestions for Windows 8 application Pin
Richard MacCutchan24-Oct-12 1:11
mveRichard MacCutchan24-Oct-12 1:11 
GeneralRe: Suggestions for Windows 8 application Pin
Richard MacCutchan24-Oct-12 1:41
mveRichard MacCutchan24-Oct-12 1:41 
RantUnwanted Calls / Spoofed Numbers Pin
pdelayCA18-Oct-12 11:42
professionalpdelayCA18-Oct-12 11:42 
GeneralRe: Unwanted Calls / Spoofed Numbers Pin
jschell19-Oct-12 9:27
jschell19-Oct-12 9:27 
QuestionCreating v2.0 of a legacy client/server application Pin
sephus617-Oct-12 10:00
sephus617-Oct-12 10:00 
AnswerRe: Creating v2.0 of a legacy client/server application Pin
Eddy Vluggen18-Oct-12 5:15
professionalEddy Vluggen18-Oct-12 5:15 
It seems that no-one is willing to answer you, so I'll give it a shot.

sephus6 wrote:
1) Should we abandon the use of a local DB? Our customers are required to have a broadband connection, so speed wouldn't be a huge issue, I am concerned though about bandwidth usage.

Depends, mostly on the size of the recordsets you fetch. If it's limited to getting the data that's going to be displayed, then broadband is broad enough. If you're going to perform lots of manipulations on the data while moving back and forth, it might be more performant if you could do it locally.

You might want to consider a hybrid; keep the data 'in the cloud' (on your server), and have tables that aren't mutated in a local database. Or synchronize the most used data to a local cache - most reports don't require 'realtime' data, and are quite happy with a database that's synchronized every now and then.

sephus6 wrote:
2) If we should keep the local DB, does WCF support this type of data model? I haven't been able to find any examples of people doing this (which is leading me to believe it's a bad idea)

All the "local" examples would treat the server as if it's "remote"; that's due to using WCF - communication. Without WCF, you'd be talking directly to the local database. That might be an option too; it's faster, but makes it harder to share data. I'd recommend it only for the reports, who could use a local (readonly version) of the data.

sephus6 wrote:
3) Are there other alternatives to the Entity framework and WCF that would better suit our applications needs?

An alternative to EF would be NHibernate, but EF is a bit more than just an ORM. I think the tools you choose are the best for the job; with the added suggestion to add EntLib in the mix of ingredients.
Bastard Programmer from Hell Suspicious | :suss:
if you can't read my code, try converting it here[^]

AnswerRe: Creating v2.0 of a legacy client/server application Pin
jschell18-Oct-12 10:02
jschell18-Oct-12 10:02 
QuestionSuggestions on implementing a search engine Pin
Sau00210-Oct-12 22:24
Sau00210-Oct-12 22:24 
AnswerRe: Suggestions on implementing a search engine Pin
Eddy Vluggen10-Oct-12 23:53
professionalEddy Vluggen10-Oct-12 23:53 
AnswerRe: Suggestions on implementing a search engine Pin
jschell11-Oct-12 9:02
jschell11-Oct-12 9:02 
QuestionDataCache Design Pin
nitin_ion9-Oct-12 20:20
nitin_ion9-Oct-12 20:20 
AnswerRe: DataCache Design Pin
dojohansen10-Oct-12 4:53
dojohansen10-Oct-12 4:53 
QuestionAlgorithm help, Splitting up multiple readings Pin
glennPattonWork39-Oct-12 0:54
professionalglennPattonWork39-Oct-12 0:54 
AnswerRe: Algorithm help, Splitting up multiple readings Pin
Eddy Vluggen9-Oct-12 1:29
professionalEddy Vluggen9-Oct-12 1:29 
GeneralRe: Algorithm help, Splitting up multiple readings Pin
glennPattonWork39-Oct-12 2:07
professionalglennPattonWork39-Oct-12 2:07 
Questionhelp on MATLAB Pin
李不凡 Dec20127-Oct-12 22:35
李不凡 Dec20127-Oct-12 22:35 
AnswerRe: help on MATLAB Pin
Richard MacCutchan8-Oct-12 2:45
mveRichard MacCutchan8-Oct-12 2:45 
GeneralRe: help on MATLAB Pin
李不凡 Dec20128-Oct-12 2:55
李不凡 Dec20128-Oct-12 2:55 
GeneralRe: help on MATLAB Pin
Thomas Daniels8-Oct-12 3:18
mentorThomas Daniels8-Oct-12 3:18 
GeneralRe: help on MATLAB Pin
李不凡 Dec20128-Oct-12 3:36
李不凡 Dec20128-Oct-12 3:36 
QuestionC++ GUI Framework Pin
Kosta Cherry25-Sep-12 11:05
Kosta Cherry25-Sep-12 11:05 
AnswerRe: C++ GUI Framework Pin
Richard MacCutchan25-Sep-12 22:09
mveRichard MacCutchan25-Sep-12 22:09 
GeneralRe: C++ GUI Framework Pin
Kosta Cherry26-Sep-12 5:40
Kosta Cherry26-Sep-12 5:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.