Showing posts with label visual studio 2010. Show all posts
Showing posts with label visual studio 2010. Show all posts

Murach's ADO.NET 4 Database Programming with VB 2010 Review

Murach's ADO.NET 4 Database Programming with VB 2010
Average Reviews:

(More customer reviews)
Are you looking to buy Murach's ADO.NET 4 Database Programming with VB 2010? Here is the right place to find the great deals. we can offer discounts of up to 90% on Murach's ADO.NET 4 Database Programming with VB 2010. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Murach's ADO.NET 4 Database Programming with VB 2010 ReviewLearning, teaching, or referring to it under pressure, this is a best-of-class book you want on your shelf. Combined with Murach's SQL Server 2005 title there's little you won't know how to do with db programming in Visual Studio. And, you'll have code samples for all of it--not just a high-level description. These 2 books, combined and used in unison, get my vote as something every visual studio programmer should have and hold. Some of my other faves are discussed on the ITSBITS website if you're ever interested.Murach's ADO.NET 4 Database Programming with VB 2010 OverviewNow in its 4th Edition, this book shows Visual Basic developers how to use Visual Studio and ADO.NET to develop database applications the way the best professionals do. You'll learn how to:

quickly create Windows and web applications by dragging-and-dropping data controls in Visual Studio 2010
code your own presentation, business, and database classes with ADO.NET 4 to build 3-layer applications...the route the professionals take for flexibility and control
display and manipulate data in web applications by using ASP.NET data controls designed specifically for that purpose, like GridView and DetailsView
work with XML-specific features of ADO.NET and SQL Server to read, write, and manipulate XML data in your applications
create local reports using Visual Studio's Report Designer and Report Viewer to display data easily...and clearly!...in tables, matrices, lists, and charts
Use the Entity Framework to create an entity data model that maps business objects to database objects, then retrieve and maintain data through that model
Use LINQ to query datasets, SQL Server databases, and entity data

Practice exercises at the end of every chapter and complete database applications throughout help you master every skill along the way. And Murach's distinctive "paired-pages" format...where each skill is presented with examples and advice in a single 2-page spread...is great for both targeted learning and reference.

Want to learn more information about Murach's ADO.NET 4 Database Programming with VB 2010?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Murach's ADO.NET 4 Database Programming with C# 2010 (Murach: Training & Reference) Review

Murach's ADO.NET 4 Database Programming with C# 2010 (Murach: Training and Reference)
Average Reviews:

(More customer reviews)
Are you looking to buy Murach's ADO.NET 4 Database Programming with C# 2010 (Murach: Training & Reference)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Murach's ADO.NET 4 Database Programming with C# 2010 (Murach: Training & Reference). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Murach's ADO.NET 4 Database Programming with C# 2010 (Murach: Training & Reference) Review(5/11/11: Update for 4.0 version at bottom.)
The introduction to this book says that knowledge of C# is assumed, but no database knowledge is necessary. What that really means is that she starts at the beginning, but she moves quickly into advanced material.
I like this approach. Too many books skip or gloss over the basics, giving a reader nowhere to look if he doesn't fully understand the code examples (except additional books).
Murach books use a "paired page" layout. On the left page is text, with the right page showing diagrams, bullet points and code samples. The right page is almost like a PowerPoint presentation, and you can quickly get through material you already know by skimming the pages on the right. The paired pages generally help you read at your own appropriate pace, especially if you're familiar with many of the points. In places, I found myself reading both pages and seeing the same material, or reading only one side and missing something. Each chapter ends with a summary and a list of terms, so you can check that you understood all of it. The layout makes it easy to go back and find something later.
These books contain good, complete and realistic code examples, and step-by-step instructions for creating them using Visual Studio tools. However, all of the ADO chapters discuss WinForms, not ASP. Many of the LINQ techniques are applicable to either platform, but the first half of the book is of minimal help to the ASP developer. (The LINQ and EF sections do dedicate their last chapters to ASP.)
LINQ (Language Integrated Query) was added with .NET 3.0 and enhanced in 3.5. Briefly, LINQ allows you to perform SQL-like selection over collections of data, whether in databases, XML, or program Objects. It lets you use a list to return another list, filtered and/or sorted. In the introductory LINQ chapter, she briefly introduces Lambda expressions, which offer a shorter, alternative syntax to many LINQ queries. Lambdas are missing from the rest of the book.
The Entity Framework, added in .NET 3.5 SP1, allows you to program to conceptualized objects instead of a specific database structure. Both LINQ and EF simplify working with data, by adding IntelliSense and a terse, flexible syntax to replace what would formerly have been much more code, tied to a specific implementation.
Murach's website has all the code examples available for free download, and there are exercises at the end of chapters using suggested changes to the examples. To me, this is the best part of the book. The downloaded code saves you from having to type along, but the exercises test your knowledge of both programming concepts and the hidden features of the Visual Studio IDE.
The code samples use SQL Server Express. An appendix explains how to download it from Microsoft if you don't already have it.
I learned a lot from this book. It introduced me to areas of Visual Studio that I had never seen before, as well as LINQ and EF. There's a lot of material here, well presented. It mostly lives up to the Murach claim that their books are "several books in one", replacing what would otherwise be a book on ADO, a book on LINQ and possibly a third book on EF.
SIDE NOTE: Microsoft has hinted that they will deprecate LINQ to SQL Server, in favor of LINQ to Entity Framework. The jury may be out on this, however.
UPDATE, 5/11/11: I just read the 4.0 version of this book. The new edition is an evolutionary change with some nice readability improvements. New sections were added on ASP.NET and XML, and the LINQ chapters are leaner and less redundant. Entity Framework is removed from the title and gets less coverage than in the earlier version, but there is a good introduction.Murach's ADO.NET 4 Database Programming with C# 2010 (Murach: Training & Reference) OverviewNow in its 4th Edition, this book shows C# developers how to use Visual Studio and ADO.NET to develop database applications the way the best professionals do. You'll learn how to:
quickly create Windows and web applications by dragging-and-dropping data controls in Visual Studio 2010
code your own presentation, business, and database classes with ADO.NET 4 to build 3-layer applications...the route the professionals take for flexibility and control
display and manipulate data in web applications by using ASP.NET data controls designed specifically for that purpose, like GridView and DetailsView
work with XML-specific features of ADO.NET to read, write, and manipulate XML data in your applications
use Visual Studio's Report Designer and ReportViewer control to create and display reports in both Windows and web applications
use LINQ to SQL instead of standard SQL so you can query databases using C# constructs
create Entity Data Models so you can use LINQ to Entities to work with business objects, like invoices, while the Entity Framework handles the database details
Practice exercises at the end of every chapter and complete database applications throughout help you master every skill along the way. And Murach's distinctive "paired-pages" format...where each skill is presented with examples and advice in a single 2-page spread...is great for both targeted learning and reference.

Want to learn more information about Murach's ADO.NET 4 Database Programming with C# 2010 (Murach: Training & Reference)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Microsoft Visual Studio 2010 Unleashed Review

Microsoft Visual Studio 2010 Unleashed
Average Reviews:

(More customer reviews)
Are you looking to buy Microsoft Visual Studio 2010 Unleashed? Here is the right place to find the great deals. we can offer discounts of up to 90% on Microsoft Visual Studio 2010 Unleashed. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Microsoft Visual Studio 2010 Unleashed ReviewNothing about this book is actually "unleashed". This is more of a beginner book that constantly references outside material. Except it's not a very good beginner book, because it doesn't even explain basic questions about common syntax, etc. I'd say there were maybe 2 chapters of value in the book.Microsoft Visual Studio 2010 Unleashed OverviewThis end-to-end deep dive into Microsoft Visual Studio 2010 Professional will help working developers squeeze maximum productivity out of Visual Studio 2010's extraordinarily rich toolbox, whether they are writing code for the Web, Windows, Silverlight, or Microsoft's Azure cloud computing environment.The authors combine authoritative and detailed information about Microsoft's latest IDE, with extensive insights and best practices drawn from decades of development experience. Developers will learn how to use Visual Studio 2010 Professional to take full advantage of the entire .NET platform, including Windows Presentation Foundation (WPF) for rich client development, Windows Communication Foundation (WCF) for building dynamic service-oriented solutions, and Windows Workflow Foundation (WF) for structured programming around business processes. The authors also present extensive new coverage of Microsoft's powerful new tools for unit testing, application instrumentation, and code analysis. By focusing entirely on Visual Studio 2010 Professional, the authors have gone deeper into Microsoft's core product than ever before. Throughout, their focus is relentlessly practical: how to apply Microsoft's tools to build better software, faster.Detailed information on how to...n Work with solutions, projects, browsers, explorers, editors, and designersn Write better macros, add-ins, and wizardsn Save more time with Visual Studio 2010's updated productivity toolsn Instrument, analyze, and test your softwaren Refactor code for greater robustness, maintainability, and performancen Share code with team members and the larger communityn Write powerful ASP.NET, ASP.NET MVC, and Silverlight web applications n Implement robust service oriented architecture (SOA)–based applications n Efficiently consume services with WCFn Write advanced Windows applications with Windows Forms and WPFn Construct data-centric applications with LINQ and Entity Framework n Create and host workflow-based applications with WFn Write applications for the Azure cloudn Extend Visual Studio with the new Managed Extensibility Framework (MEF) and the Automation Object Model n Build better object-oriented VB or C# software, and use new dynamic language featuresON THE WEB:Download all examples and source code presented in this book from informit.com/title/9780672330810visualstudiounleashed.com

Want to learn more information about Microsoft Visual Studio 2010 Unleashed?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

C#.net Web Developer's Guide (With CD-ROM) Review

C#.net Web Developer's Guide (With CD-ROM)
Average Reviews:

(More customer reviews)
Are you looking to buy C#.net Web Developer's Guide (With CD-ROM)? Here is the right place to find the great deals. we can offer discounts of up to 90% on C#.net Web Developer's Guide (With CD-ROM). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

C#.net Web Developer's Guide (With CD-ROM) ReviewThis is a really good book for developing applications for the Web. There is a short primer on the C# Language at the beginning of the book but its primary focus is on .Net Technologies including: Web Forms, MSMQ, Remoting, ASP.NET and Web Services.
Although each of those topics could be entire book by itself this book explain the basic functionality and provides excellent tutorials(with source code examples)C#.net Web Developer's Guide (With CD-ROM) Overview

Want to learn more information about C#.net Web Developer's Guide (With CD-ROM)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Visual Basic.NET XML Web Services Developer's Guide Review

Visual Basic.NET XML Web Services Developer's Guide
Average Reviews:

(More customer reviews)
Are you looking to buy Visual Basic.NET XML Web Services Developer's Guide? Here is the right place to find the great deals. we can offer discounts of up to 90% on Visual Basic.NET XML Web Services Developer's Guide. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Visual Basic.NET XML Web Services Developer's Guide ReviewA pretty thorough book covering Web Services technologies in some detail, the title is a bit misleading (not in a bad way though), as the author covers both VB6.0 Web Services technology and VB.Net implementation of the same, (with good reason). This strategy should ease the transition for the typical VB6.0 developer to VB.NET Web services, and also facilitate better understanding of SOAP over HTTP.
This guy's writing style is pretty unique among Computer Manuals in general. He has really researched his stuff, and the book is peppered with several references to tools, articles, and online resources of which many can be put to very good use.
The one and only gripe I have is that there are no simple example applications in this reference. The author acknowledges this in the book, but explains that no B2B or B2C application is simple either, (primarily what XML Web Services are for).
I can see that this approach will appeal to some and not to others, but on the whole I have to admit that his web-service examples are more complete and real-worldy than the typical "weather samples" and "add two numbers" implementations which are promoted in many circles as "Web Service examples". The author is a regular columnist for many of the Fawcette group publications such as Visual Studio magazine and I'd advice any purchaser of this book to keep in touch with Roger's writing on XML Web Services in these magazines as there are regular updates on some of the information presented in this book, which Roger continues to write about.Visual Basic.NET XML Web Services Developer's Guide Overview-- Covers migration to Visual Basic. NET for developers looking to take advantage of expanded Web service capabilities-- Loaded with hands-on examples and source code to help professionals build Web service solutions-- Complete overview of related open standards and protocols that encompass Web services, including XML, SOAP, WSDL, and UDDI-- Gives developers and corporations the tools they need to cut development cycles, become more efficient communicators, and establish new business channels

Want to learn more information about Visual Basic.NET XML Web Services Developer's Guide?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...