Class Models
Provides static method to manipulate IModels object.
Inheritance
Inherited Members
Namespace: DevZest.Data
Assembly: DevZest.Data.dll
Syntax
public static class Models
Properties
| Name | Description |
|---|---|
| Empty | Gets an empty IModels. |
Methods
| Name | Description |
|---|---|
| ContainsAny(IModels, IModels) | Determines whether source model set contains any of the specified model set. |
| Except(IModels, IModels) | Removes the models in the specified collection from the current set. |
| Intersect(IModels, IModels) | Removes the models to ensure the set contains only models both exist in this set and the specified collection. |
| IsProperSubsetOf(IModels, IModels) | Determines whether the current set is a proper (strict) subset of the specified collection. |
| IsProperSupersetOf(IModels, IModels) | Determines whether the current set is a proper (strict) superset of the specified collection. |
| IsSubsetOf(IModels, IModels) | Determines whether the current set is a subset of a specified collection. |
| IsSupersetOf(IModels, IModels) | Determines whether the current set is a superset of a specified collection. |
| New(Model[]) | Create a IModels object which contains specified Model values. |
| Overlaps(IModels, IModels) | Determines whether the current set overlaps with the specified collection. |
| SetEquals(IModels, IModels) | Determines whether the current set and the specified collection contain the same elements. |
| SymmetricExcept(IModels, IModels) | Ensures set contain only elements that are present either in the current set or in the specified collection, but not both. |
| Union(IModels, IModels) | Ensures set contain all elements that are present in either the current set or in the specified collection. |