Questions tagged [enterprise-library]

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.

Microsoft Enterprise Library consists of a collection of application blocks and core infrastructure. All of these are reusable software components designed to assist developers with common enterprise development challenges. It also comes with a lot of guidance, including the Developer's Guide, MSDN documentation, Hands-on Labs, Videos and Demos.

Enterprise Library 6 contains the following:

  • Data Access Application Block
  • Exception Handling Application Block
  • Logging Application Block
  • Validation Application Block
  • Policy Injection Application Block
  • Unity Dependency Injection Container
  • Semantic Logging Application Block (SLAB)
  • Transient Fault Handling Application Block ("Topaz")

Sites

Books

enter image description here

1586 questions
0
votes
1 answer

Enterprise Library 6 ExecuteSprocAccessor overload?

Regarding the new version of Microsoft Enterprise Libarary 6 , they have a method called ExecuteSprocAccessor (which should return Ienumerable when execute SP) which all its overload are : Usage example : /*1*/ [Description("Return data as a…
Royi Namir
  • 144,742
  • 138
  • 468
  • 792
0
votes
0 answers

How to manage the configuration using Group Policy tools

The Enterprise Library Caching Application Block includes the following features: You can use the graphical Enterprise Library configuration tools to manage configuration settings. You can configure a persistent storage location, using either…
0
votes
1 answer

Adding additional information for logging data with enterprise library

I have configured enterprise library to log data into the database and everything works just fine. This is how the curent logging information looks like: Timestamp: 6/19/2013 7:10:01 AM Category: eConnect Exception Priority: 0 EventId:…
aleczandru
  • 5,319
  • 15
  • 62
  • 112
0
votes
2 answers

Enterprise library semantic logging block. SQLDatabase sink. Out of process

I am using Enterprise library semantic logging block (out of process) and using SQL Database sink to dump all the message. After putting everything in place and doing a test run, I am getting the following error - could not find stored procedure…
Subhasis
  • 714
  • 3
  • 14
  • 28
0
votes
1 answer

Adding a 'User' to the eventlog using Enterprise Library Logging Block

I'm using the Enterprise Library Logging application block to allow my application to log various events. This is working fine and the logs can be seen by Event Viewer (eventvwr.exe) going into the Application log. However, Event Viewer always…
Grhm
  • 6,726
  • 4
  • 40
  • 64
0
votes
1 answer

Connection Pooling for Oracle in Microsoft enterprise Library

I am using Enterprise Library in my Winform application in .Net and Oracle is my database. I want to implement connectino pooling in my application. My conenction strign is similar to one given below
Tapas
  • 1
  • 1
0
votes
2 answers

Where to find Entlib xsd file?

Does this file exists? I'm tired of the 'Could not find schema information for attribute' messages. Thanks
vIceBerg
  • 4,197
  • 5
  • 40
  • 53
0
votes
2 answers

Have log entries forced to a single line when using p&p EntLib logging block

I am using the patterns & practices enterprise library (p&p EntLib) logging block to write to a text file. Some of the log message contain multiple lines which I would like to force to become a single line - in other words replacing the \r & \n…
Robert MacLean
  • 38,975
  • 25
  • 98
  • 152
0
votes
0 answers

EntrepriseLibrary version project

Is there a way to add in pre/post compile config, of a project including EntrepriseLibrary, the version of of Entreprise he always need to search. I try in the web.config of my web site.
forX
  • 2,063
  • 2
  • 26
  • 47
0
votes
1 answer

Enterprise Logging Library - Programmatic Configuration of rolling log

I have an Enterprise Logging programmatic configuration that looks like this: builder.ConfigureLogging() .LogToCategoryNamed("General") .WithOptions.SetAsDefaultCategory() …
babbitt
  • 871
  • 11
  • 22
0
votes
1 answer

Compare two date fields using Enterprise Library

I want to compare two date fields that the value in one fields should not be greater than the other. Is there a built-in validator for this? Or if I have to write a custom one could you please guide me to a good article to explain how to write…
Haris
  • 691
  • 3
  • 19
  • 34
0
votes
1 answer

How to set and use more than one formatter for a trace listener in EntLib log app block

I have configured EntLib 5 logging app block for creating logs for a WinForms app. The logging configuration is configured like so:
Codehelp
  • 4,157
  • 9
  • 59
  • 96
0
votes
1 answer

Generate automatic logs when entering and exiting functions .net 2.0

I am using .net 2.0. I want to generate the logs when the methods are calling (before call and after call) in a particular class. Is it possible in Enterprise Library 2.0 or log4net? or Is there any other way?
Ramesh
  • 627
  • 1
  • 10
  • 22
0
votes
1 answer

How to Customize Log File Name and Location in Microsoft Enterprise Library 2.0?

I am using .net 2.0 and Microsoft Enterprise Library 2.0. How can I customize the log file name and location. I want to create a log file in my app location and current date as file name. I tried fileName="foo"
Ramesh
  • 627
  • 1
  • 10
  • 22
0
votes
0 answers

asp.net error giving me row count zero

hi i am using microsoft enterprise library below is the code for dataset Public Function FetchUserValue(ByVal uemail As String) As DataSet Dim ds As New DataSet() Try Dim query As String = String.Format("select * from v_userdetails…
user1820110
  • 57
  • 1
  • 2
  • 7