Top "Enterprise-library" questions

Microsoft Enterprise Library is a collection of application blocks and core infrastructure designed to assist developers with common enterprise development challenges such as logging, validation, data access, etc.

What to use for Size argument in Database.AddOutParameter when returning a string?

I'm getting a string as an output parameter, and need to know what to set for the Size argument in …

c# .net sql-server database enterprise-library
Can not install NuGet package

I am trying to add the Unity package to my solution, but I keep receiving the listed message: Attempting to …

c# nuget unity-container enterprise-library
How to get output parameter value from ExecuteNonQuery in enterprise library (c#)?

my stored procedure is : create Procedure spSetUser ( @Name NVarchar(50), @OrganicTitle NVarchar(30), @UserName NVarchar(20), @Password NVarchar(16), @Result Int Output ) As Begin …

c# enterprise-library
BackgroundWorker exception handling

I'm working with the following components: a Library (which throws an exception) a test-console to test my logging the enterprise …

c# multithreading exception backgroundworker enterprise-library
Can Unity be made to not throw SynchronizationLockException all the time?

The Unity dependency injection container has what seems to be a widely known issue where the SynchronizedLifetimeManager will often cause …

c# unity-container enterprise-library
Why do I get System.IO.FileLoadException: Could not load file or assembly, about once a week on my ASP.Net Website?

I have a rather simple internal ASP.Net Website that has issues loading the Microsoft.Practices.EnterpriseLibrary.Data dll about …

c# asp.net assemblies enterprise-library fileloadexception
Installing Microsoft Enterprise Libraries and DatabaseFactory

I'm attempting to use the DatabaseFactory method from the Microsoft Enterprise Library. using Microsoft.Practices.EnterpriseLibrary.Data; The error I …

enterprise-library
Setting a 'category' in the .net enterprise library logging (to event log)

I am writing some logs to the event log using the Microsoft enterprise library Its writes logs away fine but …

c# logging enterprise-library
The number of parameters does not match number of values for stored procedure

I am using Enterprise Library 5x DAAB to call an Oracle stored procedure with one input parameter and one output …

c# oracle stored-procedures enterprise-library daab
Error: "is not an attribute class" when using ConfigurationElementType attribute

I'm trying to create a custom exception handler for the exception handling block of enterprise library 5.0. As far as I …

c# visual-studio-2010 enterprise-library