Categories
-
Join 1,047 other subscribers
Tags
- .NET Core
- .NET Standard
- Angular
- Apple
- Architecture
- ASP.NET-CORE
- ASP.NET-MVC
- Async
- AWS
- Azure
- BDD
- C#
- CLR
- CQRS
- Dapr
- DDD
- Delegates
- DI
- Docker
- Entity Framework
- Entity Framework
- Event Driven
- Events
- Git
- Kafka
- Linux
- MEF
- Microservices
- MOQ
- MVVM
- N-Tier
- Nano Server
- Nginx
- Nin
- Ninject
- NLog
- NUGET
- OData
- OSS
- PCL
- REST
- RIA Services
- Security
- Silverlight
- SOAP
- SpecFlow
- SSL
- Tools
- Trackable Entities
- TypeScript
- Visual Studio
- VSCode
- WCF
- Web API
- WP7
- WPF
-
Recent Posts
Personal
Technical
Twitter
Tweets by tonysneed
Tag Archives: DI
What It Means to Be a Software Architect — and Why It Matters
For the past year I have worked as a Senior Solutions Architect for a large multinational company in the construction sector. While in the past I functioned as a hybrid developer-architect, designing and building enterprise-scale systems and mission-critical line-of-business applications, … Continue reading
Use EF Core with AWS Lambda Functions
This is Part 3 in a 3 part series: Add .NET Core DI and Config Goodness to AWS Lambda Functions IDesignTimeDbContextFactory and Dependency Injection: A Love Story Use EF Core with AWS Lambda Functions (this post) In a previous post … Continue reading
IDesignTimeDbContextFactory and Dependency Injection: A Love Story
This is Part 2 in a 3 part series: Add .NET Core DI and Config Goodness to AWS Lambda Functions IDesignTimeDbContextFactory and Dependency Injection: A Love Story (this post) Use EF Core with AWS Lambda Functions Whenever I set out … Continue reading
Add .NET Core DI and Config Goodness to AWS Lambda Functions
This is Part 1 in a 3 part series: Add .NET Core DI and Config Goodness to AWS Lambda Functions (this post) IDesignTimeDbContextFactory and Dependency Injection: A Love Story Use EF Core with AWS Lambda Functions When Amazon introduced AWS … Continue reading
Trackable Entities – Now with Repository and Unit of Work
When I released v1.0 of my Trackable Entities Framework, it came with a lot of developer goodness: NuGet packages, Visual Studio project templates, a VSIX installer available from Visual Studio’s Extensions Gallery, Getting Started guides and a screencast. From the … Continue reading
Decouple WCF Services from their DI Container with Common Instance Factory
In my last blog post I introduced the Common Instance Factory, which I built as an alternative to Common Service Locator to reduce coupling between an application and a Dependency Injection (DI) container. Unlike the Common Service Locator (CSL), the … Continue reading
Use Common Instance Factory to Abstract Away the Dependency Injection Container
Download the Common Instance Factory with WCF Extensions here and is also available on NuGet. A while back I wrote a blog post on the Onion Architecture, an approach to building loosely-coupled applications where you can swap out particular components … Continue reading
Using Ninject with WCF Services
Download the code for this post. Update: This post is based on a older version of Ninject WCF Extensions. For an example of using the new version with REST support, see this post. In my post on the Onion Architecture … Continue reading
Global Error Handling in ASP.NET MVC 3 with Ninject
Download the code for this blog post. In my last blog post I explained how to decouple infrastructure concerns, such as logging, from the rest of your application using a Dependency Injection container, such as Ninject. I implemented an ILoggingService … Continue reading
Using NLog with Dependency Injection
Download the code for this blog post. In my last post I blogged about using Dependency Injection to break tight coupling between application components. This lets you to treat infrastructure pieces, such as data access or logging, as swappable entities, … Continue reading