473,394 Members | 1,715 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,394 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
Jul 21 '05 #1
5 1267
Check it out
http://msdn.microsoft.com/architecture/

Biswajit
"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

Jul 21 '05 #2
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

Jul 21 '05 #3
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


Jul 21 '05 #4
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

Jul 21 '05 #5
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



Jul 21 '05 #6

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

Similar topics

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...
4
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...
3
by: Steve | last post by:
I have some general catch clauses in my app as follows: try { } catch(Exception ex) { } try
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.