Does MS PnP Unity Scan for Assemblies Like Structu

2019-02-27 19:31发布

In Using StructureMap 2.5 to scan all assemblies in a folder, we can see that StructureMap uses AssembliesFromPath() to explicitly look for types to resolve. What is the equivalent of this in Microsoft Unity? Because Unity is such a generic term, searching for documents about this online is not that easy.

Update: Unity has something called an Assembly Matching Rule but its description does not communicate to me that it scans folders.

2条回答
ら.Afraid
2楼-- · 2019-02-27 19:42

Registration by Convention was added in Unity 3.0. Nice examples of this feature are provided in "Developer's Guide to Dependency Injection Using Unity" in solution in samples named OtherUnitySamples. You can find the book here:

http://msdn.microsoft.com/en-us/library/dn178463(v=pandp.30).aspx

and code samples here:

unity.codeplex.com/downloads/get/683531

查看更多
劫难
3楼-- · 2019-02-27 19:45

The Assembly Matching Rule is used for applying interception to classes constructed by Unity and not for container registration. Unity itself does not have any convention-based scanning functionality like StructureMap. There is a CodePlex project that adds similar functionality to Unity though. http://autoregistration.codeplex.com/

查看更多
登录 后发表回答