Windows 10 and 11 minimal setup for HDR video playback and streaming
On last Black Friday, I purchased a 50-inch 4K HDR10 smart TV with only $150. I use it as monitor for my computer. I didn’t find a walk through tutorial for the whole HDR (High Dynamic Range) setup, s
440 words
|
2 minutes
Update code font from Consolas to Cascadia Code with ligature
A decade ago, I . They are both monospaced. The difference is:
686 words
|
3 minutes
Installing SQL Server 2017/2019 LocalDB and resolve the engine versioning problem
SQL Server LocalDB is a minimal SQL Server database engine, it can be installed and used with zero configuration.
277 words
|
1 minute
Entity Framework Core and LINQ to Entities in Depth (8) Optimistic Concurrency
Conflicts can occur if the same data is read and changed concurrently. Generally, there are 2 approaches:
3487 words
|
17 minutes
Entity Framework Core and LINQ to Entities in Depth (7) Data Changes and Transactions
Besides LINQ to Entities queries, EF Core also provides rich APIs for data changes, with imperative paradigm.
5924 words
|
30 minutes
Entity Framework Core and LINQ to Entities in Depth (6) Query Data Loading
After translated to SQL, in LINQ to Entities, sequence queries returning IQueryable<T> implements deferred execution too.
1491 words
|
7 minutes
Entity Framework Core and LINQ to Entities in Depth (5) Query Translation Implementation
Regarding different database systems can have different query languages or different query APIs, EF Core implement a provider model to work with different kinds of databases. In EF Core, the base libr
3176 words
|
16 minutes