Method FilterOut
FilterOut(params EntityType[])
Creates a new filter that will filter out the given values (and keep the rest)
Declaration
public static IEntityTypeFilter FilterOut(params EntityType[] values)
Parameters
| Type | Name | Description |
|---|---|---|
| EntityType[] | values | The values to filter out |
Returns
| Type | Description |
|---|---|
| IEntityTypeFilter | A new entity type filter |
FilterOut(Func<EntityType, bool>)
Creates a new filter that will filter out the given values (and keep the rest)
Declaration
public static IEntityTypeFilter FilterOut(Func<EntityType, bool> predicate)
Parameters
| Type | Name | Description |
|---|---|---|
| Func<EntityType, bool> | predicate | The function to obtain the included (resp. excluded) values |
Returns
| Type | Description |
|---|---|
| IEntityTypeFilter | A new entity type filter |