c# Programming Glossary: myapp.data
LINQ extension methods - Any() vs. Where() vs. Exists() http://stackoverflow.com/questions/3703256/linq-extension-methods-any-vs-where-vs-exists
How to use Ninject Conventions extension without referencing Assembly (or Types within it) http://stackoverflow.com/questions/4019585/how-to-use-ninject-conventions-extension-without-referencing-assembly-or-types with the following projects MyApp.Web MyApp.Services MyApp.Data. We code to interfaces and utilize Ninject 2 for DI IoC. However.. new StandardKernel kernel.Scan a a.FromAssemblyContaining MyApp.Data.SomeDataClass a.FromAssemblyContaining MyApp.Services.SomeServiceClass.. our MyApp.Web project uses nothing at all directly from MyApp.Data I am trying to avoid a reference to MyApp.Data. With the above..
|