C# 클래스 Adventure.Works.LiveDemo.Startup

파일 보기 프로젝트 열기: TelerikAcademy/Databases

공개 메소드들

메소드 설명
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