C# Class BuildYourOwnDAL.SessionLevelCache

Mostrar archivo Open project: davybrion/BuildYourOwnDal Class Usage Examples

Public Methods

Method Description
ClearAll ( ) : void
Remove ( object entity ) : void
RemoveAllInstancesOf ( Type type ) : void
Store ( Type type, object id, object entity ) : void
TryToFind ( Type type, object id ) : object

Method Details

ClearAll() public method

public ClearAll ( ) : void
return void

Remove() public method

public Remove ( object entity ) : void
entity object
return void

RemoveAllInstancesOf() public method

public RemoveAllInstancesOf ( Type type ) : void
type System.Type
return void

Store() public method

public Store ( Type type, object id, object entity ) : void
type System.Type
id object
entity object
return void

TryToFind() public method

public TryToFind ( Type type, object id ) : object
type System.Type
id object
return object