-
as seen on Microsoft .NET Support Team
- Search for 'Microsoft .NET Support Team'
Microsoft has released Enterprise Library on April 2010. it’s free you can download and install from “Download Enterprise Library”. you can also find older version of enterprise library 4.1 still if your project needs it for maintenance purpose. but I suggest go for 5.0 as it has great enhancements…
>>> More
-
as seen on Microsoft .NET Support Team
- Search for 'Microsoft .NET Support Team'
This is my second post in this series. In first blog post I explained how to install Enterprise Library 5.0 and provided links to various resources. Enterprise Library is divided into various blocks. Simply we can say, a block is a ready made solution for a particular common problem across various…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm getting the following error while testing my EHAB implementation:
{"Activation error occured while trying to get instance of type ExceptionPolicyImpl, key "LogPolicy""} System.Exception
Stack Trace: StackTrace " at Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(Type…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How can I use Enterprise Library to do a Data Access Layer in c# for Sql CE and .NET Compact Framework?
I haven't found clear examples. I would like to learn Enterprise Library but any example will be appreciated.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How can you execute multiple DbCommands with one connection?
Example:
var db = DatabaseFactory.CreateDatabase();
var dbCommand = db.GetSqlStringCommand(InsertCommandText);
...
db.ExecuteNonQuery(dbCommand);
Now, I want to be able to Execute multiple dbCommands. For instance in pseudo kind of code:
var…
>>> More