EFFiltersCollection Methods
A collection of Entity Framework data source filters.| Name | Description |
|---|---|
| Add(DBSetFilter) | Adds the specified filter to the collection. |
| Add(Object) | Adds the filter with the specified value to the collection. |
| AddRange(DBSetFilter[]) | Appends an array of filters to the EFFiltersCollection. |
| AddRange(IEnumerable<DBSetFilter>) | Appends a collection of filters to the EFFiltersCollection. |
| Clear() | Removes all items from the collection. |
| Contains(DBSetFilter) | Determines whether or not the collection contains the specified filter. |
| Contains(Object) | Determines whether or not the collection contains a filter with the specified value. |
| CopyTo(DBSetFilter[], Int32) | Copies the entire filter collection to a one dimensional array starting at the specified index of the target array. |
| CopyTo(Array, Int32) | Copies the entire filter collection to a one dimensional array starting at the specified index of the target array. |
| Equals(Object, Object) static | Determines whether the specified object instances are considered equal. Inherited from Object. |
| Equals(Object) | Determines whether the specified object is equal to the current object. Inherited from Object. |
| GetEnumerator() | Returns the filters stored in the EFFiltersCollection. |
| GetHashCode() | Serves as the default hash function. Inherited from Object. |
| GetType() | Gets the Type of the current instance. Inherited from Object. |
| IndexOf(DBSetFilter) | Returns the zero-based index of the specified filter in the collection. |
| IndexOf(Object) | Returns the zero-based index of the specified filter in the collection. |
| Insert(Int32, DBSetFilter) | Inserts the specified filter into the collection at the specified position. |
| Insert(Int32, Object) | Inserts the specified filter into the collection at the specified position. |
| MemberwiseClone() protected | Creates a shallow copy of the current Object. Inherited from Object. |
| ReferenceEquals(Object, Object) static | Determines whether the specified Object instances are the same instance. Inherited from Object. |
| Remove(DBSetFilter) | Removes the specified filter from the collection. |
| Remove(Object) | Removes the first occurrence of a specific filter from the collection. |
| ToString() | Returns a string that represents the current object. Inherited from Object. |
See Also