Upgrade diagnostics related files to 3.1.x.
parent
9fe1e408c0
commit
ba29bf2516
@ -0,0 +1,143 @@
|
|||||||
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||||
|
|
||||||
|
using Microsoft.EntityFrameworkCore.Diagnostics;
|
||||||
|
|
||||||
|
namespace EntityFrameworkCore.Jet.Diagnostics.Internal
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public class JetLoggingDefinitions : RelationalLoggingDefinitions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogDefaultDecimalTypeColumn;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogByteIdentityColumn;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundDefaultSchema;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundTypeAlias;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundColumn;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundForeignKey;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogPrincipalTableNotInSelectionSet;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogMissingSchema;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogMissingTable;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundSequence;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundTable;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundIndex;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundPrimaryKey;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogFoundUniqueConstraint;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogPrincipalColumnNotFound;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
|
||||||
|
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
|
||||||
|
/// any release. You should only use it directly in your code with extreme caution and knowing that
|
||||||
|
/// doing so can result in application failures when updating to a new Entity Framework Core release.
|
||||||
|
/// </summary>
|
||||||
|
public EventDefinitionBase LogReflexiveConstraintIgnored;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue