Entity Framework/Core and LINQ to Entities (6) Query Data Loading
After translated to SQL, in LINQ to Entities, sequence queries returning IQueryable<T> implements deferred execution too.
1985 words
|
10 minutes
Entity Framework/Core and LINQ to Entities (7) Data Changes and Transactions
Besides LINQ to Entities queries, EF/Core also provides rich APIs for data changes, with imperative paradigm.
3737 words
|
19 minutes
Entity Framework/Core and LINQ to Entities (5) Query Translation Implementation
The previous part demonstrated what are the SQL translations of the LINQ to Entities queries. This part discusses how the translation is implemented. Regarding different database systems can have diff
4793 words
|
24 minutes
Entity Framework/Core and LINQ to Entities (4) Query Methods (Operators)
This part discusses how to query SQL database with the defined mapping entities. In EF/Core, LINQ to Entities supports most of the methods provided by Queryable:
8933 words
|
45 minutes
Entity Framework/Core and LINQ to Entities (2) Modeling Database: Object-Relational Mapping
.NET and SQL database and have 2 different data type systems. For example, .NET has System.Int64 and System.String, while SQL database has bigint and nvarchar; .NET has sequences and objects, while SQ
3248 words
|
16 minutes
Entity Framework/Core and LINQ to Entities (1) Remote Query
The previous chapters discussed LINQ to Objects, LINQ to XML (objects), and Parallel LINQ (to Objects). All of these LINQ technologies query local in-memory objects managed by .NET. This chapter discu
2295 words
|
11 minutes
C# 8.0 in-depth: Understanding index and range, and working with LINQ and IEnumerable<T>
C# 8.0 introduces index and range for array. This part discussed the index and range types, syntax, compilation, and how to apply them with LINQ for any type that implements IEnumerable<T>.
2031 words
|
10 minutes