October 2010
Intermediate to advanced
1920 pages
73h 55m
English
EntityBase ClassAny entity that you inherit from the EntityBase class inherits the following methods automatically:
• Select()—
Selects all entities.
• Select(string orderBy)—
Selects all entities in a certain order.
• SelectCached()—
Selects all entities from the cache.
• SelectCached(string orderBy)—
Selects all entities from the cache in a certain order.
• Select(int startRowIndex, int maximumRows)—
Selects a page of entities.
• Select(int startRowIndex, int maximumRows, orderBy)—
Selects a page of entities in a certain order.
• SelectCount()—
Returns a count of entities.
• SelectCount(string orderBy)—
Returns a count of entities.
• SelectCountCached()—
Returns a count of entities from the ...