Hi,

I am working on LINQ with n-tier, i had created 4 layers

1,. Datalinq (contains only DBML) file
2. DataAccess (contains database operations)
3. Business Facade (contains busines operations like sending objects
from presentation to dataacess, calculations etc)
4. presentation layer (GUI) website

i had referred all bin/release dlls to dependent layers as follows

datalinq bin/release to dataaccess bin
dataaccess bin/release to businessfacade bin
businessfacade bin/release to presentation layer.

but it automatically reffered dataaccess & datalinq dlls also to
presentation layer bin

Now whenever i browse pages on website through any browser.. it is
giving the below error everytime..



 Configuration Error
Description: An error occurred during the processing of a
configuration file required to service this request. Please review the
specific error details below and modify your configuration file
appropriately.

Parser Error Message: Could not load file or assembly 'BusinessFacade,
Version=1.0.0.0, Culture=en-GB, PublicKeyToken=null' or one of its
dependencies. The system cannot find the file specified.

Source Error:

Line 83:         <add assembly="System.Data.DataSetExtensions,
Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
Line 84:         <add assembly="System.Xml.Linq, Version=3.5.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
Line 85:         <add assembly="BusinessFacade, Version=1.0.0.0,
Culture=en-GB, PublicKeyToken=null"/>
Line 86:         <add assembly="DataAccess, Version=1.0.0.0,
Culture=en-GB, PublicKeyToken=null"/>
Line 87:         <add assembly="DataLinq, Version=1.0.0.0, Culture=en-
GB, PublicKeyToken=null"/>



please help me out from this issue. it is really making me mad and
cant go for live without solving this issue.

Thanks in Advance
Arji

Reply via email to