I am using DependencyInjection in a WCF service, liek this:
<configSections>
<section name="sqlServerCatalogNameOverwrites" type="System.Configuration.NameValueSectionHandler" />
<section name="dependencyInjectionInformation" type="SD.LLBLGen.Pro.ORMSupportClasses.DependencyInjectionSectionHandler, SD.LLBLGen.Pro.ORMSupportClasses.NET20, Version=2.6.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27"/>
</configSections>
<dependencyInjectionInformation>
<additionalAssemblies>
<assembly filename="ERMS.POC.AuditorBermuda.dll"/>
<assembly filename="ERMS.POC.AuthorizerBermuda.dll"/>
</additionalAssemblies>
</dependencyInjectionInformation>
And the code that gets the customers is this. But no authorizer is attached after the entities are created.
EntityCollection<CustomerEntity> entities = null;
var items = (from p in linq.Customer
orderby p.ContactName
select p);
entities = ((ILLBLGenProQuery)items).Execute<EntityCollection<CustomerEntity>>();