Wiley.com
Print this page Share

Professional Enterprise .NET

ISBN: 978-0-470-44761-1
Paperback
504 pages
October 2009
Professional Enterprise .NET (0470447613) cover image
This product is not currently available for purchase from this website.
For customer care, special sales, or to find your rep, please visit our Contact Us page.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
1 8 Error in Text
Ignore the sentence:

Figure 1-1 shows a diagrammatic depiction of the differences between the two patterns.

(The correct reference to Figure 1-1 is on page 9.)
12/11/09
18-19 Error in Text
ADOET.NET

should be

ADO.NET
11/25/09
2 20 Error in Text
1st para below code example:

QLSql statement

Should be

SQL statement
12/11/09
2 23 Error in Text
1st paragraph on page:

TextToDataFormatter

Should be:

DataToTextFormatter
12/11/09
29 Error in Text
SpringET.NET

Should be:

Spring.NET
11/25/09
3 35 Error in Code
Listing class Customer Property MobileNumber is:
public class Customer
{
...

public string MobileNumber
{
get { return _mobileNumber; }
set { _emailAddress = value; }
}
}

Should be:

public class Customer
{
...

public string MobileNumber
{
get { return _mobileNumber; }
set { _mobileNumber = value; }
}
}
09/09/2010
37 Error in Code
The text in the book says "namespace ProfessionalEnterprise.Chap3.Rev_01.Model"

Should say "namespace ProEnt.Chap3.Returns.Model"
07/08/2010
App A 431 Error in Text
/// Delegate available for remotely invoking any method accepting a single

/// string parameter and a void return

Should be:

/// Delegate available for remotely invoking any method accepting a single

/// string parameter and returning a string
12/11/09
244 Error in Text
In the method "SubmitForPrequalification":

if (loanApplication.GetBrokenRules().Count == 0)

Should be

if (loanApplication.GetBrokenRules().Count > 0)
11/2/09
Back to Top