Professional Design Patterns in VB .NET: Building Adaptable Applications

  Author:    Tom Fischer, John Slater, Pete Stromquist, Chaur G. Wu
  ISBN:    1590592743
  Sales Rank:    480002
  Published:    2003-09-05
  Publisher:    Apress
  # Pages:    368
  Binding:    Paperback
  Avg. Rating:    5.0 based on 11 reviews
  Used Offers:    9 from $28.39
  Amazon Price:    $28.39
  (Data above last updated:  2008-10-15 06:17:00 EST)
  
  
Sort customer reviews by:
  
Show All Reviews on Page      Hide All Reviews on Page
   
  
Professional Design Patterns in VB .NET: Building Adaptable Applications
  

This book is not a treatment of the theory of design patterns. We show design patterns applied in real-world architectural scenarios so that you can see them in action and see the benefits that they bring. It explains why it's worth spending time building design patterns into your applications, even though this may seem at odds with Rapid Application Development.

After a fast-paced introduction to design patterns, the core of this book consists of three case studies, which show how design patterns are applied in each of the main tiers of an application: the data, business, and presentation layers. These case studies flesh out the reader's understanding of design patterns, and show how they can be employed in real scenarios that will be instantly recognizable to all VB .NET programmers. The book also shows how design patterns can be used in conjunction with .NET Remoting, so that they can be applied not just within individual tiers, but across them as well. Since many VB .NET programmers may not be completely familiar with UML, we also provide a UML primer as an appendix.

                  Reader Reviews 1 - 12 of 12                 
  
  
Review
Date
Review
Rating(5 High)
Review
Helpful
to:
Customer Review Reviewer
Info
Permanent
Link
Reader Reviews Below Sorted by Newest First
07-12-07 5 1\1
(Hide Review...)  good start
Reviewer Permalink
I had a little experience with Des.Pat and this book helped me to speed up my knowledge. I encourage people to start DP with this book. This is less theory and a lot of practice. Which is very good. I have seen other books but they are a lot of theory less implementation and they are talking very very academic. So it's hard to understand. But this book brings you up to academic knowledge by given simple examples.
(Review Data Last Updated: 2008-10-11 05:06:37 EST)
05-12-07 4 (NA)
(Hide Review...)  Doing Objects in VB - I wish more authors would write like this
Reviewer Permalink
If you want to get up to speed quickly on OOP practices this is an excellent starting point. I wish more authors would write books like this, both writing style and material. Deborah has an easy to read style that makes the material she covers easy to comprehend.

The book walks the reader through a small and simple project. The downloaded code sample works and the build along instructions are accurate; and if followed will produce the same code as the downloaded version. There were a few time where I got to a point that I thought something was overlooked or wrong; and in each case when I turned the page or read the next 2-3 pages all was explained; this too helped me feel I was getting a good grasp of the material being presented.

So, with all this praise, why did I only give the book 4 stars? In my opinion there should have been another two - three chapters to really complete the material. What is in the book is how to use objects and bind them to Win forms, how to build a three-tier project and how to use the bound forms to edit records. What's missing is the Add & Delete functionality. Using bound objects with the DataGridView you lose the native ability of the grid to do column sorts since the objects being bound to do not implement iSortable (this is mentioned in the book but it would have been nice to have included). There was a nice use of Nullable(of Date) but this too would have been nice to expand (SQL allows for a null date but .NET doesn't allow Date types to be null, this creates some problems that the nullable(of Date) doesn't really overcome.

So, a Great book I highly recommend. It does a great job with the material it does cover; and you get a reusable development framework in the process, I just wish there were a few more chapters to really complete the material covered.
(Review Data Last Updated: 2007-07-12 17:00:05 EST)
03-15-06 5 0\1
(Hide Review...)  good book but some examples are hard to understand.
Reviewer Permalink
If you know design patterns well, you make different accross developers! This book is describing each design pattern with an example. Sometimes it is difficult to get everything through one example but I'd recommend this book to everyone. I am good at vb.net so application of design patterns in vb.net is a big plus for me.
(Review Data Last Updated: 2007-07-01 17:09:29 EST)
03-14-06 5 0\1
(Hide Review...)  good book but some examples are hard to understand.
Reviewer Permalink
If you know design patterns well, you make different accross developers! This book is describing each design pattern with an example. Sometimes it is difficult to get everything through one example but I'd recommend this book to everyone. I am good at vb.net so application of design patterns in vb.net is a big plus for me.
(Review Data Last Updated: 2007-04-11 10:53:30 EST)
03-10-06 5 0\2
(Hide Review...)  One of Best for VB.Net Advance programmer
Reviewer Permalink
I am been reading this book. It covers majority of patterns, nicely categorizied. Book is not very length, explains concepts properly.
I recommend this books for any VB.Net programmer who wants to keep upper hand from thier peers.
(Review Data Last Updated: 2007-07-01 17:09:29 EST)
12-30-04 5 8\8
(Hide Review...)  Design Patterns Rock
Reviewer Permalink
I purchased this book a long time ago and I have to admit a lot of the information presented went right over my head in the beginning. I felt the book was too hard to understand mostly because I was still very new to .Net in general. Well, after spending a few months working on a real life project, I got the suspension that our architecture could lead to problems in the future. So I started researching design patterns and asking other people on message boards how they approach design. After all of that, I decided to review this book again and I was amazed at how much of the information was sinking in my brain this time of around. I especially love the section on applying design patterns to the data access tier. I still have more to re-read, but that is my favorite section so far. This is a great book for design pattern newbies like myself. The approaches in this book can also work in C# although some minor syntax changes would have to be made. Well worth the price.
(Review Data Last Updated: 2007-07-01 17:09:29 EST)
10-12-04 5 3\4
(Hide Review...)  OUTSTANDING
Reviewer Permalink
This book is the best explication of what and why, and of what not and why not, that I have read, and I own hundreds of programming books. It covers all three logical layers. BUY IT!
(Review Data Last Updated: 2007-07-01 17:09:29 EST)
06-17-04 3 16\16
(Hide Review...)  Good on theory, lousy on implementation
Reviewer Permalink
There's definately some good explanation of design patterns in this text, but if you're looking for best practices in .NET coding, you're going to need to look elsewhere.

The book begins with a chapter that explains the basic premise behind the most common creational, behavioral and structural patterns. This chapter is excellent and provided me with the most insight into how I could change the way I develop applications using patterns.

The next chapters deal with how to implement these patterns in the data tier, middle tier and presentation tier. The examples are illustrative, if nothing else. BEWARE THEIR CODING TECHNIQUES! The authors actually implemented the disposal of unmanaged resources like database connections inside of a Finalize() method!!! With the .NET Framework's implementation of automatic garbage collection, this is the absolute last thing you'd ever want to do with an unmanaged resource. They should have used the IDisposable interface.

I'll give them three stars for their treatment of the topic, but these guys are lousy .NET coders.

(Review Data Last Updated: 2007-07-01 17:09:29 EST)
03-08-04 5 9\9
(Hide Review...)  Excellent content for Patterns
Reviewer Permalink
This book illustrates, explains and simplifies design patterns. It is very easy to read, follow and understand. Although all patterns are mentioned in the book only a select few are detailed in the beginning of the book. The remainder of the book provides information how design patterns are used in the n-tier architecture, such as the data tier, middle tier and presentation tier.

The books offers one of the most fascinating concepts in developing the presentation tier, called MVC, a.k.a. Model, View, Controller. MVC decouples the user interface from the form/control events on a form and placing this logic in a controller class or classes. The controllers have full control of the model aspect of the framework where the controller puts data in the view or the user interface from the model.

MVC uses patterns within its framework. For example the controller is made of algorithms and therefore is a strategy pattern. The relationship between the view and model is an observer pattern, while the view is a composite and the relationship from the view to the controller is a factory pattern. Using the factory pattern the controller is created, uses the data in the model and the view is updated via the observer. The book however goes into to detail how to forgo the observer pattern by using data binding with ADO.NET and a data grid. The observer pattern in MVC is not explained, other than in the beginning of the book as the pattern itself as opposed relating to a framework.

You are not limited to just these patterns within MVC. I have used the visitor pattern, the mediator pattern and the command patterns within my controller classes to achieve different methods to communicate and alter the data within the model. It is my opinion that as long as the View, the Model and the Controllers are decoupled from each other then you have achieved MVC.

With excellent code and UML examples, I suggest owning this book as I find myself studying it time and time again attempting to master MVC and implementing best practice with design patterns. Another good book I highly recommend is C# Design Patterns.

(Review Data Last Updated: 2006-07-07 13:06:41 EST)
02-25-04 5 4\4
(Hide Review...)  Best Framework out there (even if it IS in VB)
Reviewer Permalink
I was originally skeptical when a colleague suggestesd the book, since I'm a C# programmer and the title talked about business objects in VB.NET. Don't let that disuade you! With the code interoperability of .NET it doesn't matter. The code I downloaded from the website compiled first time! (Which rarely happens) and the examples touch every major angle of using the framework. For diehard C# geeks, there are user contributed ports to C#. I've been a little more open-minded in the bookstore since I bought this book. Definitely buy this book!
(Review Data Last Updated: 2006-07-07 13:06:41 EST)
12-27-02 5 5\6
(Hide Review...)  Classic topic that is well written for VB.NET
Reviewer Permalink
Tom Fischer, et al, do a nice job explaining the basics design patterns with the newly object-oriented Visual Basic (VB.NET): which pattern is used against what type of problem. This book is great for people migrating from VB6 who have never dealt with objects and it's a good introduction to the topic.

The book covers most of the original Gang of Four (GoF) models in a very readable, pragmatic way.

(Review Data Last Updated: 2006-07-07 13:06:41 EST)
10-02-02 5 31\33
(Hide Review...)  Easily understandable Design Patterns in VB.NET
Reviewer Permalink
For those of you that hears about Design Patterns but don't know C/C++ and are having issues finding good ressources to adapt Design Patterns in the VB area, this is the book for you.

Rather than attempting to compete with 'Design Patterns : elements of Reusable Object-Oriented Software', from Addison-Wesley, they extend it so that VB developers can learn how to understand design Patterns and apply them inside our applications.

The book covers the following common patterns :
Singleton, Abstract Factory, Factory, Adapter, Facade, Bridge, Composite, Decorator, Proxy, Observer, State, Strategy,Template.

(Review Data Last Updated: 2006-07-07 13:06:41 EST)
  
                  Reader Reviews 1 - 12 of 12                 
  
  
  
  
  
  

Because the data used to generate this site come from outside sources, VeryWellSaid.com cannot guarantee the completeness or accuracy of the data.
Search VeryWellSaid™
Google
Web VeryWellSaid™
New subjects are added every week.
View Subjects Below by:
* Top Selling
 (click category name, left)
* Top-Rated Top Sellers
 (click 'Top Rated', right)
In the news...  
Dubai\UAE Top Rated
Influenza\Bird Flu Top Rated
Iraq Top Rated
Supreme Court Top Rated
All Books Top Rated
Arts Top Rated
Photography Top Rated
Digital Photography Top Rated
Digital Cameras Top Rated
Biography Top Rated
Business Top Rated
Management Top Rated
Marketing Top Rated
Sales Top Rated
Stocks Top Rated
Bonds Top Rated
Real Estate Top Rated
Trading Top Rated
Commodities Trading Top Rated
Time Management Top Rated
Starting A Business Top Rated
Children's Top Rated
Comics Top Rated
Computers Top Rated
PC Top Rated
Mac Top Rated
Programming Top Rated
Design Patterns Top Rated
.Net Top Rated
C# Top Rated
Vb.Net Top Rated
Asp.Net Top Rated
Java Top Rated
Python Top Rated
PHP Top Rated
Perl Top Rated
Javascript Top Rated
Ajax Top Rated
CSS Top Rated
Open Source Top Rated
SQL Top Rated
Databases Top Rated
Oracle Top Rated
MySql Top Rated
Sql Server Top Rated
IIS Top Rated
Apache Top Rated
Linux Top Rated
Windows Server Top Rated
Project Management Top Rated
HTML Top Rated
UML Top Rated
IT Certifications Top Rated
Cisco Certifications Top Rated
MCSE Top Rated
MCSD Top Rated
Cooking Top Rated
Italian Cooking Top Rated
Vegetarian Cooking Top Rated
Wine Top Rated
Engineering Top Rated
Entertainment Top Rated
Health Top Rated
Nutrition Top Rated
Dieting Top Rated
Sex Top Rated
History Top Rated
Military History Top Rated
British History Top Rated
Middle East History Top Rated
Land Battles Top Rated
Naval Warfare Top Rated
Air Warfare Top Rated
9/11 Top Rated
Terrorism Top Rated
Home Top Rated
Mortgage\Home Equity Loan Top Rated
Cars Top Rated
Car Buying Top Rated
Sports Cars Top Rated
Cat Top Rated
Humor Top Rated
Horror Top Rated
Law Top Rated
IP Law Top Rated
Legal History Top Rated
Fiction Top Rated
Oprah's Book Club Top Rated
Medicine Top Rated
Cancer Top Rated
Stroke Top Rated
Heart Disease Top Rated
Fertility Top Rated
Diabetes Top Rated
Pharmacology Top Rated
Back Problems Top Rated
Menopause Top Rated
Thyroid Top Rated
Pain Top Rated
Organic Chemistry Top Rated
Immune System Top Rated
Mystery Top Rated
Nonfiction Top Rated
Outdoors Top Rated
Running Top Rated
Radio Control Models Top Rated
Guns Top Rated
Parenting Top Rated
Divorce Top Rated
Professional Top Rated
Reference Top Rated
Religion Top Rated
Romance Top Rated
Science Top Rated
Physics Top Rated
Chemistry Top Rated
Astronomy Top Rated
Psychology Top Rated
Science Fiction Top Rated
Sports Top Rated
Teens Top Rated
Travel Top Rated
USA Top Rated
Europe Top Rated
France Top Rated
Italy Top Rated
England Top Rated
China Top Rated
All Books Arts Biography Click Here For An A-Z Index Of All 213 Best-Seller Subjects Business Children's Comics
Computers Cooking Engineering Entertainment Health History Home Horror Humor Law Fiction Medicine Mystery
Nonfiction Outdoors Parenting Professional Reference Religion Romance Science Sci-Fi Sports Teens Travel
In Association with Amazon.com

Cache miss
(not cached)