Search Results

0
votes
1answer
153 views

Export a Unity container information to xml configuration

In Microsoft Unity you can configure a container from an existing XML configuration but is there a way to do the opposite? From an initialized container export the corresponding XML configuration? …
0
votes

How to implement a singleton in C#?

Personally I would go for a dependency injection framework, like Unity, all of them are able to configure singleton items in the container and would improve coupling by moving from a class dependen …
0
votes

What’s the proper naming convention for a property ‘ID’ : ID or Id ?

We around here see things like "Id" or other acronyms as a word, and "Id" is the easy one because in the banking business we do get lots of strange letter combinations. So we treat it as a word, on …
1
vote

Why are there dashes in a .NET GUID?

The Guid class of .Net recognizes a bunch of different formats: dashes as separators, no separators, brackets as delimiters, parenthesis as delimiters, no delimiters, etc …
0
votes

Export a Unity container information to xml configuration

After "diving" the Unity source code my conclusion is it ain't possible for now. …
1
vote

Setter / property injection in Unity without attributes

I don't like those attributes also You can do all using the Configure method of the unity container: First register the type unityContainer.Register …