Configure Git for Visual Studio 2015
After installing , the initial Git configurations can be viewed with git config –list:
189 words
|
1 minute
Entity Framework and LINQ to Entities (6) Deferred Execution, Laziness Loading and Eager Loading
In LINQ to Objects, query methods returning IEnumerable<T> implements deferred execution. Similarly, in LINQ to Entities, query methods returning IQueryable<T> implements deferred execution too.
2781 words
|
14 minutes
Convert HTML to Well-Formatted Microsoft Word Document
Recently I wanted to convert my into a Word document (.doc). The tasks are:
1614 words
|
8 minutes
Entity Framework and LINQ to Entities (3) Logging
As fore mentioned, this tutorial will use SQL Profiler to trace the remote SQL queries, which are translated from the LINQ to Entities queries. This is most close the the truth, because the tracing un
561 words
|
3 minutes
Use Fiddler with Node.js
) is an useful HTTP proxy debugger on Windows. It would be nice if it can work with applica
489 words
|
2 minutes
Entity Framework and LINQ to Entities (2) Object-Relational Mapping
.NET and SQL database and have 2 different data type systems. For example:
2687 words
|
13 minutes
Entity Framework and LINQ to Entities (5) Query Translation
The previous part discussed what SQL queries are the LINQ to Entities queries translated to. This part discusses how the LINQ to Entities queries are translated to SQL queries. As fore mentioned, IQue
5069 words
|
25 minutes