Categories
Tags
- .NET Core
- .NET Standard
- Angular
- Apple
- Architecture
- ASP.NET-CORE
- ASP.NET-MVC
- Async
- AWS
- Azure
- C#
- CLR
- Delegates
- DI
- Docker
- Entity Framework
- Entity Framework
- Events
- Git
- Kafka
- Linux
- MEF
- MOQ
- MVVM
- N-Tier
- Nano Server
- Nginx
- Nin
- Ninject
- NLog
- NUGET
- OData
- OSS
- PCL
- REST
- RIA Services
- Security
- Silverlight
- SOAP
- SSL
- Tools
- Trackable Entities
- TypeScript
- Visual Studio
- VSCode
- WCF
- Web API
- WP7
- WPF
-
Recent Posts
Personal
Technical
Twitter
- RT @dotnet: The agenda is out! See what's happening the world of .NET. #dotNETConf is coming November 10 — 12 2020 Come celebrate the new… 3 months ago
- RT @Michael_Hladky: Lazy loading #Angular components with async/await is - 🥴not lazy - 🧟♀️not cancelable - ☠️hard to handle errors - 🤕clum… 3 months ago
- RT @bricelambs: ASP.NET OData 8.0 Preview for .NET 5 devblogs.microsoft.com/odata/asp-net-… 3 months ago
Category Archives: Technical
Run WPF in .NET Core on Nano Server in Docker
Every now and then you’re presented with a scenario that should in theory work as advertised, but you’re not convinced until you actually see it with your own eyes. I recently found myself in this situation when migrating some code … Continue reading
An Event Stream Processing Micro-Framework for Apache Kafka
Apache Kafka, originally developed by LinkedIn and open sourced in 2011, is the de-facto industry standard for real-time data feeds that can reliably handle large volumes of data with extremely high throughput and low latency. Companies like Uber, Netflix and … Continue reading
Enable SSL with ASP.NET Core using Nginx and Docker
When developing web apps and api’s with ASP.NET Core, it is useful to replicate the kind of setup used to deploy your application to production. While the built-in Kestrel web server is adequate for local development, you need a full-fledged … Continue reading
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
Customize EF Core Scaffolding with Handlebars Templates
With the release of Entity Framework Core 2.1 we finally have a version of EF Core that is ready for prime time. EF Core is a complete re-write of its predecessor Entity Framework 6, which has been married to the … Continue reading
It’s here! Trackable Entities for EF Core!
The idea behind my open source Trackable Entities project is quite simple: track changes to an object graph as you update, add and remove items, then send those changes to a back end service where they can be saved in … Continue reading
Posted in Technical
Tagged .NET Core, .NET Standard, Entity Framework, Trackable Entities
3 Comments
React to JavaScript object updates with observable-entities-js
I just published my first TypeScript library — observable-entities. It contains base classes that notify observers when properties are updated and when objects are added or removed from collections. The code for observable-entitites-js can be found here: https://github.com/TrackableEntities/observable-entities-js. Node sample app that uses observable-entities … Continue reading