C# Class DbExpressions.DbExpression

Provides the base class from which the classes that represent expression tree nodes are derived.
Show file Open project: seesharper/DbExpressions Class Usage Examples

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the specified T:System.Object is equal to the current T:System.Object.

GetHashCode ( ) : int

Serves as a hash function for a particular type.

ToString ( ) : string

Returns a System.String that represents this instance.

operator ( ) : DbExpression

Implements the operator !=.

Private Methods

Method Description
InitializeQueryTranslator ( ) : void

Method Details

Equals() public method

Determines whether the specified T:System.Object is equal to the current T:System.Object.
public Equals ( object obj ) : bool
obj object The to compare with the current .
return bool

GetHashCode() public method

Serves as a hash function for a particular type.
public GetHashCode ( ) : int
return int

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string

operator() public static method

Implements the operator !=.
public static operator ( ) : DbExpression
return DbExpression