vote up 1 vote down star

We are compiling a list of common functions and methods into a utilities assembly. Part of this utilities assembly is to provide a façade over the Enterprise Library Logging Block. The utility assembly abstraction provides an extension over the Logging Block in a number of ways:

  • A custom database logging component to capture richer logging information in a RDBMS
  • Integrate the use of CorrelationManager with a primary focus on Web application sessions and request correlations
  • Integrated policy injection.

My question is; is it generally considered best practice to wrap 3rd party controls (like the Enterprise Library) up in a façade as described above?

flag

1 Answer

vote up 3 vote down check

Yes. We use lots of EntLib components and wrap all of them. They are not really meant to be exposed to all the layers of your application. In the case you mention with the logging block, it's perfectly reasonable to establish a facade that wraps the call to the logging factory (we pass a custom configuaration file for each block for example) and then expose a much more simple interface to your callers (Logger.Log( ... ) for example). Another example is the data application block is almost always wrapped in a formal data access layer.

link|flag
Agreed -- improves isolation and facilitates testing via mocks. – Jay Jul 3 at 3:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.