MissingSchemaAction
MissingSchemaAction is an enumeration used by the Entity Framework to describe how to handle discrepancies between the conceptual model and the underlying store schema during initialization or schema discovery. It applies when an ObjectContext connects to a database and the store schema does not fully align with the model.
Typical values provide a choice of behavior for how to respond to missing or mismatched schema elements.
Usage often involves configuring a connection’s MissingSchemaAction before or during initialization, for example by setting the
Note that MissingSchemaAction is associated with older, ObjectContext-based versions of the Entity Framework. Modern EF workflows
See also: Entity Framework, ObjectContext, EntityConnection, schema mapping, migrations.