SqliteEventId Class
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.
Event IDs for SQLite events that correspond to messages logged to an ILogger and events sent to a DiagnosticSource.
public static class SqliteEventId
type SqliteEventId = class
Public Class SqliteEventId
- Inheritance
-
SqliteEventId
Remarks
These IDs are also used with WarningsConfigurationBuilder to configure the behavior of warnings.
See Logging, events, and diagnostics, and Accessing SQLite databases with EF Core for more information and examples.
Fields
ColumnFound |
A column was found. |
CompositeKeyWithValueGeneration |
An entity type has composite key which is configured to use generated values. SQLite does not support generated values on composite keys. |
ForeignKeyFound |
A foreign key was found. |
ForeignKeyPrincipalColumnMissingWarning |
A column referenced by a foreign key constraint was not found. |
ForeignKeyReferencesMissingTableWarning |
A foreign key references a missing table. |
FormatWarning |
Values are in an invalid format for the type. |
IndexFound |
An index was found. |
InferringTypes |
Inferring CLR types. |
MissingTableWarning |
The database is missing a table. |
OutOfRangeWarning |
Values are out of range for the type. |
PrimaryKeyFound |
A primary key was found. |
SchemaConfiguredWarning |
A schema was configured for an entity type, but SQLite does not support schemas. |
SchemasNotSupportedWarning |
SQLite does not support schemas. |
SequenceConfiguredWarning |
A sequence was configured for an entity type, but SQLite does not support sequences. |
TableFound |
A table was found. |
TableRebuildPendingWarning |
An operation may fail due to a pending rebuild of the table. |
UnexpectedConnectionTypeWarning |
A connection of an unexpected type is being used. |
UniqueConstraintFound |
A unique constraint was found. |
Applies to
Entity Framework