martedì 16 luglio 2013

Could not load file or assembly Microsoft.Practices.EnterpriseLibrary.Logging exception

C# 4.0, MS Practices Enterprise Library 5.0

I have used the Enterprise Library Configuration tool for creating a Logging Application Block and I have obtained a configuration file like this:

<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="true" />
<loggingConfiguration name="" tracingEnabled="true" defaultCategory="General">
                …
                …
</loggingConfiguration>

Unfortunately, I got the following exception while trying to use the Enterprise Library Logging Application Block:

“An error occurred creating the configuration section handler for validation: Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)”

I solved this problem by setting to null the PublicKeyToken.


PublicKeyToken=null

giovedì 4 luglio 2013

Retrieving data from a SQL Server stored procedure using LINQ to entities

C# .NET Framework 4.0, SQL Server 2008, ADO.NET Entity Data Model, LINQ to Entities

I’ve a GetCompanies SQL Server 2008 stored procedure that returns a resultset like this

Field1
Field2
Field3
Field4
Field5
Field6
Field7
Field8
VE
7471
033333333
Environment s.r.l.
1
Roma, 6
Vigonza
35010
VE
7499
033333322
Active s.r.l.
4
Venezia, 8
Padova
35100

So, in my application I want to read this resultset data using LINQ to Entities.

1.       Add a new ADO.NET Entity Data Model (Shapshot.edmx) at the solution.
2.       Follow the wizard for creating a new connection to your database and select the GetCompanies (for this example) stored procedure from the objects list.
3.       Click on Model Browser.
4.       Select the SnapshotModel tree, ComplexTypes.
a.       Right click on CopmplexTypes and then click on “Add new Complex Type”.
b.      Type a name, for example “CompanyEntity”.
                                                               i.      Select CompanyEntity, right click on “Add” -> “Scalar Property” and select the type property: Int32, String, Boolean and so on.
                                                             ii.      In my example I obtain a structure like this
1.       Field1 -> String
2.       Field2 -> Int32
3.       Field3 -> String
4.       Field4 -> String
5.       Field5 -> Int32
6.       Field6 -> String
7.       Field7 -> String
8.       Field8 -> String
c.       Expand the Function Imports folder and double click on GetCompanies stored procedure, you‘ll see a dialog box like this. Select the “Complex” option button and then the type that you have created before.



5.       Now, you can retrieve data using this C# code (Company is an internal object).
GetCompanies() returns a System.Data.Objects.ObjectResult<CompanyEntity> object.

public Company[] GetCompanies()
        {   
            var companiesList = new List<Company>();
            using (var context = new SnapshotEntities())
            {
                var query = context.GetCompanies();

                foreach (var c in query)
                {
                    var company = new Company
                        {
                            Field1 = c.Field1,
                            Field2 = c.Field2,
                            Field3 = c.Field3,
                            Field4 = c.Field4,
                            Field5 = c.Field5,
                            Field6 = c.Field6,
                            Field7 = c.Field7
                            Field8 = c.Field8
                        };

                    companiesList.Add(company);
                }
            }

            return companiesList.ToArray();
        }


That’s all folk!

lunedì 1 luglio 2013

Rebuild Enterprise Library 5.0 (script error)

Windows 7 Professional 64 bit

After I ‘ve downloaded the Microsoft Enteprise Libray 5.0, I wanted to rebuild all assemblies by ..\EntLib50Src\Scripts\BuildLibrary.bat script, but I received following error: “The specified solution configuration Debug|BPC is invalid. Please specify a valid solution configuration using the Configuration and Platform properties (e.g. MSBuild.exe Solution.sln /p:Configuration=Debug /p:Platform=”Any CPU”) or leave those properties blank to use the default solution configuration."

So, in the 2013 if you want resolve this problem you MUST delete a key registry.

Using regedit.exe navigate to the registry path

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment

and select the key Platform. Platform had the value BPC.
Then you delete only the value BPC. After this, the key Platform was still there but empty. Close Regedit, restart your PC and run the BuildLibrary.bat script.