ContextProcessingStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the status of EF DbContext processing.
public enum class ContextProcessingStatus
public enum ContextProcessingStatus
type ContextProcessingStatus =
Public Enum ContextProcessingStatus
- Inheritance
-
ContextProcessingStatus
Fields
| ContextAdded | 2 | A new context was created and succefully configured through DI. |
| ContextAddedButRequiresConfig | 3 | A new context was created however requires some more configuration changes for DI to work. |
| ContextAvailable | 1 | No edits were required to DbContext |
| ContextEdited | 4 | A context was available but it was edited to add DbSet property. |