C# Class DbExpressions.DbInExpression

Represents determining if a given value matches any value in a sub query or a list.
Inheritance: DbExpression
Show file Open project: seesharper/DbExpressions Class Usage Examples

Public Methods

Method Description
DbInExpression ( DbExpression target, DbExpression expression )

Initializes a new instance of the DbInExpression class.

Method Details

DbInExpression() public method

Initializes a new instance of the DbInExpression class.
public DbInExpression ( DbExpression target, DbExpression expression )
target DbExpression The target .
expression DbExpression The that either represents a sub query or a list of values.