C# Класс Adventure.Works.LiveDemo.Startup

Показать файл Открыть проект

Открытые методы

Метод Описание
Main ( string args ) : void
QueryFive ( ) : void

Eager loading the email addresses in one server request SET Based operation

QueryFour ( ) : void

Not a set based operation More like individual T-SQL Statements looking up each individual email address

QueryOne ( ) : void
QuerySix ( ) : void

Eager loading done properly With explicit join, server filtering and projection

QueryThree ( ) : void

Using a projection to retrieve less data as possible from the server

QueryTwo ( ) : void

Filter on the server in order to utilize the heavy mathematics and algorithms that work under the hood of SQL Server Also to retrieve less data from the server, because that is an unnecessary overhead

Описание методов

Main() публичный статический Метод

public static Main ( string args ) : void
args string
Результат void

QueryFive() публичный статический Метод

Eager loading the email addresses in one server request SET Based operation
public static QueryFive ( ) : void
Результат void

QueryFour() публичный статический Метод

Not a set based operation More like individual T-SQL Statements looking up each individual email address
public static QueryFour ( ) : void
Результат void

QueryOne() публичный статический Метод

public static QueryOne ( ) : void
Результат void

QuerySix() публичный статический Метод

Eager loading done properly With explicit join, server filtering and projection
public static QuerySix ( ) : void
Результат void

QueryThree() публичный статический Метод

Using a projection to retrieve less data as possible from the server
public static QueryThree ( ) : void
Результат void

QueryTwo() публичный статический Метод

Filter on the server in order to utilize the heavy mathematics and algorithms that work under the hood of SQL Server Also to retrieve less data from the server, because that is an unnecessary overhead
public static QueryTwo ( ) : void
Результат void