Csla.Luna, what is it?

I have this wpf form; the call InitializeComponent()

brings up this message:

A binding error was detected.

The assembly with the display name "Csla.Luna" was not loaded into the Binding Context "Load" AppDomain with the identifier 1. The reason for the failure was: System.IO.FileNotFoundException: it is possible not to load the file or assembly "Csla.Luna, Version = 3.6.1.0, Culture = neutral, PublicKeyToken = 93be5fdc093e4c30 'or one of its dependencies. The system cannot find the file specified. File name:' Csla.Luna, Version = 3.6.1.0, Culture = neutral, PublicKeyToken = 93be5fdc093e4c30 '

=== Pre-bind state information ===
LOG: User = DOMAIN\blah.blah
LOG: DisplayName = Csla.Luna, Version=3.6.1.0, Culture=neutral,

      

PublicKeyToken = 93be5fdc093e4c30 (Fully specified) LOG: Appbase = file: /// D: / MyPath / bin / Debug / LOG: Initial PrivatePath = NULL Calling assembly: PresentationFramework, Version = 3.0.0.0, Culture = neutral, PublicKeyToken = 31bf3856ad364e35. === LOG: This binding starts with the default load context. LOG: Using Application Configuration File: D: \ MyPath \ Bin \ Debug \ Myapplication.vshost.exe.Config LOG: Using Machine Configuration File from C: \ WINDOWS \ Microsoft.NET \ Framework \ v2.0.50727 \ Config \ machine.config ... LOG: Post-political link: Csla.Luna, Version = 3.6.1.0, Culture = neutral, PublicKeyToken = 93be5fdc093e4c30 LOG: Attempting to download a new url File: /// D: /MyPath/bin/Debug/Csla.Luna.DLL. LOG: Attempting to load a new url File: /// D: / MyPath / bin / Debug / Csla.Luna / Csla.Luna.DLL. LOG: Attempting to load a new url File: /// D: /MyPath/bin/Debug/Csla.Luna.EXE. LOG: Attempting to download a new url File: /// D: ./MyPath/bin/Debug/Csla.Luna/Csla.Luna.EXE

We are using Csla, but in a data access component not developed by me; I don't know what Csla.Luna is and I couldn't find anything on the internet. Any help? ...

The only "normal" thing I do on this form is that I bind to some ObjectDataProviders that call static methods that access the database but have worked so far and I can't tell if this is the problem or not.

Any help would be greatly appreciated. Can't believe Google has no idea about this Csla.Luna thing.

+2


source to share


1 answer


I don't believe Csla.Luna is part of the original structure. You should try to contact the person responsible for developing the data access component to learn more about this.

In any case, it seems that you are missing this file (Csla.Luna.dll).



You can also use Reflector to locate the call location of this assembly Csla.Luna ...

+1


source







All Articles