473,414 Members | 1,711 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,414 software developers and data experts.

General information on Enterprise Application design?

Could someone give me a hint where to find *good* information, samples,
tutorials, hints, whatever on design of multi/three-tiered applications,
business layers etc (mainly winforms but web application information isn't
bad, too)? ok, that isn't especially on enterprise size application but on
applications that are well designed, changeable and maintainable.

the things that interest me are especially
- database abstraction, where it makes (not) sense, to use advanced db
functions or use it only as backend, and why in which case
- how and which layers/baseclasses to use in the code, best with code
samples through the layers
- how and at which level to let the different (data)objects interact with
others
- how to make sql queries. directly as strings or via classes that could
make porting to other databases more easyly

guess this are things that the most companys make themselves without knowing
the drawbacks of their sw-designs.i'd like to know how to make it real good
and not to write some code without any good concept and in the hope that it
"seems to work" somehow in the end :)
thx in advance,
Daniel
Nov 15 '05 #1
4 1104
There are a few good books out there, but I'd start here..
http://msdn.microsoft.com/library/de...ml/daab-rm.asp

Here's a pretty good book on the subject..
http://www.amazon.com/exec/obidos/tg...books&n=507846

And this one too...
http://www.amazon.com/exec/obidos/tg...glance&s=books

Also Daniel, getting a firm grip of how ADO.NET works is the key to building
anything based upon it, Enterprise or Standalone. You will probably want to
get Bill Vaughn's Best Practices book... www.betav.com or David Sceppa's
ADO.NET COre Reference, they will pay for themselves by the time you get to
the office...

HTH,

Bill
"ViperDK (Daniel K.)" <vi**************@viperdk.dyndns.org> wrote in message
news:bs*************@news.t-online.com...
Could someone give me a hint where to find *good* information, samples,
tutorials, hints, whatever on design of multi/three-tiered applications,
business layers etc (mainly winforms but web application information isn't
bad, too)? ok, that isn't especially on enterprise size application but on
applications that are well designed, changeable and maintainable.

the things that interest me are especially
- database abstraction, where it makes (not) sense, to use advanced db
functions or use it only as backend, and why in which case
- how and which layers/baseclasses to use in the code, best with code
samples through the layers
- how and at which level to let the different (data)objects interact with
others
- how to make sql queries. directly as strings or via classes that could
make porting to other databases more easyly

guess this are things that the most companys make themselves without knowing the drawbacks of their sw-designs.i'd like to know how to make it real good and not to write some code without any good concept and in the hope that it "seems to work" somehow in the end :)
thx in advance,
Daniel

Nov 15 '05 #2
I also like Rocky Lhotka's book
http://www.amazon.com/exec/obidos/AS...385934-7563819

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
MVP, hRD
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________

"William Ryan" <do********@nospam.comcast.net> wrote in message
news:u9**************@tk2msftngp13.phx.gbl...
There are a few good books out there, but I'd start here..
http://msdn.microsoft.com/library/de...ml/daab-rm.asp
Here's a pretty good book on the subject..
http://www.amazon.com/exec/obidos/tg...books&n=507846
And this one too...
http://www.amazon.com/exec/obidos/tg...glance&s=books
Also Daniel, getting a firm grip of how ADO.NET works is the key to building anything based upon it, Enterprise or Standalone. You will probably want to get Bill Vaughn's Best Practices book... www.betav.com or David Sceppa's
ADO.NET COre Reference, they will pay for themselves by the time you get to the office...

HTH,

Bill
"ViperDK (Daniel K.)" <vi**************@viperdk.dyndns.org> wrote in message news:bs*************@news.t-online.com...
Could someone give me a hint where to find *good* information, samples,
tutorials, hints, whatever on design of multi/three-tiered applications,
business layers etc (mainly winforms but web application information isn't bad, too)? ok, that isn't especially on enterprise size application but on applications that are well designed, changeable and maintainable.

the things that interest me are especially
- database abstraction, where it makes (not) sense, to use advanced db
functions or use it only as backend, and why in which case
- how and which layers/baseclasses to use in the code, best with code
samples through the layers
- how and at which level to let the different (data)objects interact with others
- how to make sql queries. directly as strings or via classes that could
make porting to other databases more easyly

guess this are things that the most companys make themselves without

knowing
the drawbacks of their sw-designs.i'd like to know how to make it real

good
and not to write some code without any good concept and in the hope that

it
"seems to work" somehow in the end :)
thx in advance,
Daniel


Nov 15 '05 #3
Following the MS way, you can go to http://msdn.microsoft.com/architecture.
There are some free eBooks (PDF) in the Patterns and Practices section.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"ViperDK (Daniel K.)" <vi**************@viperdk.dyndns.org> wrote in message
news:bs*************@news.t-online.com...
Could someone give me a hint where to find *good* information, samples,
tutorials, hints, whatever on design of multi/three-tiered applications,
business layers etc (mainly winforms but web application information isn't
bad, too)? ok, that isn't especially on enterprise size application but on
applications that are well designed, changeable and maintainable.

the things that interest me are especially
- database abstraction, where it makes (not) sense, to use advanced db
functions or use it only as backend, and why in which case
- how and which layers/baseclasses to use in the code, best with code
samples through the layers
- how and at which level to let the different (data)objects interact with
others
- how to make sql queries. directly as strings or via classes that could
make porting to other databases more easyly

guess this are things that the most companys make themselves without knowing the drawbacks of their sw-designs.i'd like to know how to make it real good and not to write some code without any good concept and in the hope that it "seems to work" somehow in the end :)
thx in advance,
Daniel

Nov 15 '05 #4
You are right....I read it a while ago, but I'll second the motion that it's
a great book. A lot different from a lot of other approaches, but very cool
nonetheless.
"William (Bill) Vaughn" <bi**************@nwlink.com> wrote in message
news:OM**************@TK2MSFTNGP09.phx.gbl...
I also like Rocky Lhotka's book
http://www.amazon.com/exec/obidos/AS...385934-7563819
--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
MVP, hRD
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights. __________________________________

"William Ryan" <do********@nospam.comcast.net> wrote in message
news:u9**************@tk2msftngp13.phx.gbl...
There are a few good books out there, but I'd start here..

http://msdn.microsoft.com/library/de...ml/daab-rm.asp

Here's a pretty good book on the subject..

http://www.amazon.com/exec/obidos/tg...books&n=507846

And this one too...

http://www.amazon.com/exec/obidos/tg...glance&s=books

Also Daniel, getting a firm grip of how ADO.NET works is the key to

building
anything based upon it, Enterprise or Standalone. You will probably want to
get Bill Vaughn's Best Practices book... www.betav.com or David Sceppa's ADO.NET COre Reference, they will pay for themselves by the time you get to
the office...

HTH,

Bill
"ViperDK (Daniel K.)" <vi**************@viperdk.dyndns.org> wrote in

message
news:bs*************@news.t-online.com...
Could someone give me a hint where to find *good* information, samples, tutorials, hints, whatever on design of multi/three-tiered applications, business layers etc (mainly winforms but web application information isn't bad, too)? ok, that isn't especially on enterprise size application but on
applications that are well designed, changeable and maintainable.

the things that interest me are especially
- database abstraction, where it makes (not) sense, to use advanced db
functions or use it only as backend, and why in which case
- how and which layers/baseclasses to use in the code, best with code
samples through the layers
- how and at which level to let the different (data)objects interact with others
- how to make sql queries. directly as strings or via classes that

could make porting to other databases more easyly

guess this are things that the most companys make themselves without

knowing
the drawbacks of their sw-designs.i'd like to know how to make it real

good
and not to write some code without any good concept and in the hope

that it
"seems to work" somehow in the end :)
thx in advance,
Daniel



Nov 15 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: ViperDK \(Daniel K.\) | last post by:
Could someone give me a hint where to find *good* information, samples, tutorials, hints, whatever on design of multi/three-tiered applications, business layers etc (mainly winforms but web...
2
by: Robert Wilkens | last post by:
Ok... This may be the wrong forum, but it's the first place I'm trying. I'm new to C# and just implemented the 3-tier Distributed application from Chapter 1 (the first walkthrough) in the...
3
by: Steve | last post by:
I have some general catch clauses in my app as follows: try { } catch(Exception ex) { } try
3
by: JezB | last post by:
What's the generally accepted approach for using Styles and Stylesheets in a web application based on .aspx files, Web Controls, User Controls, and code-behind modules (c# in my case)? Most style...
6
by: Ian Williamson | last post by:
Greetings, My company has an ASP.NET based enterprise product that is undergoing some changes and I need some community input to help solve a problem. In the current implementation, any given...
105
by: Christoph Zwerschke | last post by:
Sometimes I find myself stumbling over Python issues which have to do with what I perceive as a lack of orthogonality. For instance, I just wanted to use the index() method on a tuple which does...
8
by: Crazy Cat | last post by:
Hi, When I click on the properties of a linked server, all the General properties are read - only, which means that if I want to edit any general properties I have to delete the linked server...
1
by: Jeremy S. | last post by:
..NET's code Access Security enables administrators to restrict the types of things that a .NET application can do on a local computer. For example, a ..NET Windows Forms application can be...
6
by: S. Lorétan | last post by:
Hi guys. I am preparing the rewriting of an huge existing application in VB6. This software is a mess of 10 years of patchs and new functionalities added randomly, and didn't have any logical or...
2
by: Doug | last post by:
Hi, I wanted to start a general discussion more for getting some thoughts on what other people think/practice out there just to see how far (if at all) I'm off base on my own thoughts. My...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.