Enumerates the types of cached properties in the
CacheManager
.
- Namespace
- DbSyncKit
.DB .Enum - Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph BT
Type-->Base0["Enum"]
Base0-->Base1["ValueType"]
Base1-->Base2["object"]
Type-.->Interface0["IComparable"]
Type-.->Interface1["IFormattable"]
Type-.->Interface2["IConvertible"]
Type["CachePropertyType"]
class Type type-node
Syntax
public enum CachePropertyType
Fields
Name | Field Type | Constant Value | Summary |
---|---|---|---|
All | CachePropertyType | 0 |
Represents all properties.
static
|
ComparableProperties | CachePropertyType | 8 |
Represents properties that are comparable (neither key nor excluded).
static
|
Excluded | CachePropertyType | 1 |
Represents properties marked as excluded.
static
|
ExcludedProperties | CachePropertyType | 10 |
Represents properties that are excluded.
static
|
GenerateWithID | CachePropertyType | 6 |
Represents whether to generate an INSERT query with an identity column.
static
|
Identity | CachePropertyType | 3 |
Represents properties marked as identity columns.
static
|
Include |
CachePropertyType | 7 |
Represents whether to include identity insert in an INSERT query.
static
|
Key | CachePropertyType | 2 |
Represents properties marked as key columns.
static
|
KeyProperties | CachePropertyType | 9 |
Represents properties that are unique.
static
|
TableName | CachePropertyType | 4 |
Represents the table name associated with a type.
static
|
TableSchema | CachePropertyType | 5 |
Represents the table schema associated with a type.
static
|