Enterprise Library 6.0 / Unity 3.0
Greetings!
The patterns & practices team started exploration on the next major versions of Enterprise Library and Unity.
The way we envision Enterprise Library v6.0 and Unity 3.0 is that they will be targeted at Windows 8 and Windows Server 2012 developers that are using .NET framework 4.5. See http://bitly.com/entlibvNext for more.
This is a list of ideas to help us shape these releases. Considering we are doing a full sweep of the scenarios, please do not assume that everything would be ported. If there’s something in the existing EntLib you really want to see moving forward, please submit that as a separate UserVoice story.
Please comment/vote on the existing stories or to suggest new ones.
Please note the list may not always represent the actual prioritized backlog of the development team.
-
IDatabase interface
Consider providing a IDatabase interface to for example make mocking of database dependency much easy.
3 votes -
Will EnterpriseLibrary.Config support Visual Studio 2012 ?
Will EnterpriseLibrary.Config support Visual Studio 2012 ? http://visualstudiogallery.msdn.microsoft.com/029292f0-6e66-424f-8381-3454c8222f9
1 vote -
Intellisense for types in config files
It would be nice to have write extension for Visual Studio providing in configuration file Intellisense. It should show types referenced by assembly that can be registered in container.
9 votes -
Optional<T> & IEnumerable<T>
Optional<T> is a constructor parameter which is not an essential dependency of a class but can be needed for some actions. This is very helpfull if you have for example licence features in your application. You can than register on startup only components which are licensed and your other components can decide which parts to show or use based on the available features. Like nullable types it needs a HasValue or IsRegistred property to check if a type can be instanciated.
IEnumerable<T> is needed to get all registrations of a particular type.3 votes -
Shorter names of by removing Library, I know that it is Library via dll extension
Shorter names are better if no meaning is lost. Let consider Microsoft.Practices.EnterpriseLibrary.Logging.dll and Microsoft.Practices.Enterprise.Logging.dll. We all now that Enterprise is Library via dll extension. So VS problem of long paths and hurt of devs without ReSharper will be less, and without lost of meaning.
3 votes -
Resource Application Block (Globalization Framework)
It would be great and nice to include the Resource Application Block by providing more and easy features to Extending the ASP.NET 2.0 Resource-Provider Model.
3 votes -
Generic ITransientErrorDetectionStrategy
Hello,
ITransientErrorDetection.IsTransient accepts only an exception and it forces the code to throw exceptions even if not needed. I think it would help having an additional interface defined with a generic type, for examplepublic interface ITransientErrorDetection<T>
{
bool IsTransient(T error);
}This way it would still work with the current implementation of retry policy, but also allow cases when the error is not an exception but an error code or message. An example of usage would be with HttpClient which doesn't throw an exception when a return status code is an error
Thoughts?Thanks,
Pedro1 vote -
Add support for spatial data in SQL 2008+. DbType must support geography and geometry types
Add support for spatial data in SQL 2008+. DbType must support geography and geometry types. Right now I have to convert those data to string and pass as parameters. Please add support for Szstem.Data.Spatial namespace datatypes and other spatial helper methods.
3 votes -
Get rid of the Logging and ExceptionHandling Application Blocks
For a long time I have felt that the Entlib logging and other logging frameworks like Log4Net, have been going in the wrong direction and worse have allowed the actual MS Framework guys to rest on their laurels. We should not need to log exceptions, the .NET framework should automatically do it for us. We should not have to add tracing statements to capture method calls and parameters being passed in, the Framework should do it for us.
Then a couple of years ago we started using AviCode, and it turns out that this is true, Avicode is able to…3 votes -
add bulk updates in the Database Logging Tracelistener
The database TraceListener is great for logging up to a certain point, but beyond that it runs out of capacity somewhat. If one was able to send updates in batches to the logging database instead of having to call the stored procedure line by line I think it would increase throughput considerably for relatively little effort.
3 votes -
Seamless integration with Azure
All components should configuration elements if used with Windows Azure.
For example, I should be able to log to blob or security block should be able to interface with WIF
19 votes -
'Topaz' for 'Service Bus for Windows Server'
I would recomend to add support of 'Topaz' for 'Service Bus for Windows Server'. It should be fairly easy to do because 'Service Bus for Windows Server' and 'Azure Service Bus' have a common codebase.
26 votes -
Configuration Tool should be only one if possible
When installing Enterprise Library 5 Configuration Tool you get 4 different executables:
- EntLib Config .NET 3.5 (x86)
- EntLib Config .NET 3.5
- EntLib Config .NET 4 (x86)
- EntLib Config .NET 4I think that the Configuration Tool should be only one for simplicity if possible and that target framework version could be included in the configuration XML if needed.
19 votes -
Same handlingInstanceID when an exception was already handled by the block
Exception Handling Application Block
It would be very useful if an exception that was already handled by the block uses the same handlingInstanceID generated the first time it was handled so you can associate all the exception chain as only one error.
If the exception was already handled the block uses the same handlingInstanceId generated before, if not then it generates a new one.
e.g. Supose that you show the handlingInstanceId to the user as a ticket number of the error. You want to track down what happen using that ticket number, but if your model handles the exceptions in…
6 votes -
Rapid integration with popular Microsoft Frameworks / Bootstrapper
Rapid integration with popular Microsoft Frameworks. For example:
Install-Package Unity.Mvc
- I don’t have to write a single line of code and my MVC will now use Unity
And so on…
Install-Package Unity.Http
Install-Package Unity.Wcf
Install-Package Unity.Win840 votes -
5 votes
-
RollingFileTraceListener generates filenames with GUIDs
Details are available in the discussion thread -
1 vote -
RollingFileTraceListener should have option to put column headers
Using the RollingFileTraceListener we write a CSV file (in our production environment).
It would be useful for us if the CSV files had column headers. This option is not available I believe in the current framework.
1 vote -
ActivationException occurs when resolving LogWriter from container
The bug http://entlib.codeplex.com/workitem/32970 tracks the problem.
The discussion where I posted the problem is available at - http://entlib.codeplex.com/discussions/389044
This results in reliability issues in our production code. Hence it should be an important issue to fix IMHO.
1 vote -
interception on async/await methods
don't know how but is it possible to add interception support for async/await methods?
18 votes
- Don't see your idea?