UI chapter 4
Hi,
I've been through chapters 1 to 3 and all ok but am, like others having issues with chapter 4.
I have been through other posts relating to this and have made changes as instructed but still get some errors when trying to rebuild or build the BLL.
Error 1 'XXX.XxxDAL.Framework.ENTUserAccountData' does not contain a definition for 'IsDuplicateWindowsAccountName' and no extension method 'IsDuplicateWindowsAccountName' accepting a first argument of type 'XXX.XxxDAL.Framework.ENTUserAccountData' could be found (are you missing a using directive or an assembly reference?) C:\Users\Andrew\Documents\Visual Studio 2008\Projects\Xxx.net Solution\XXX.XxxBLL\Framework\ENTUserAcountEO.cs 85 36 XXX.XxxBLL
Error 2 'XXX.XxxDAL.Framework.ENTUserAccountData' does not contain a definition for 'IsDuplicateEmail' and no extension method 'IsDuplicateEmail' accepting a first argument of type 'XXX.XxxDAL.Framework.ENTUserAccountData' could be found (are you missing a using directive or an assembly reference?) C:\Users\Andrew\Documents\Visual Studio 2008\Projects\Xxx.net Solution\XXX.XxxBLL\Framework\ENTUserAcountEO.cs 111 40 XXX.XxxBLL
Error 3 No overload for method 'Select' takes '2' arguments C:\Users\Andrew\Documents\Visual Studio 2008\Projects\Xxx.net Solution\XXX.XxxBLL\Framework\ENTUserAcountEO.cs 189 42 XXX.XxxBLL
the DAL compiles fine. The ENTUserAccountEO.cs has the following:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using XXX.XxxBLL;
using XXX.XxxBLL.Framework;
using XXX.XxxDAL;
using XXX.XxxDAL.Framework;
namespace XXX.XxxBLL.Framework
then the code pasted from the sample files.
Any help is greatly appreciated
Gilbo
|