Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix efcore-docs links #27309

Merged
merged 1 commit into from
Jan 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/EFCore/Diagnostics/WarningsConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Microsoft.EntityFrameworkCore.Diagnostics;
/// methods to obtain a new instance with the option changed.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-warning-configuration">Configuration for specific messages</see> for more information and
/// See <see href="https://aka.ms/efcore-docs-warning-configuration">Configuration for specific messages</see> for more information and
/// examples.
/// </para>
/// </remarks>
Expand Down Expand Up @@ -63,7 +63,7 @@ public virtual WarningBehavior DefaultBehavior
/// It is unusual to call this method directly. Instead use <see cref="WarningsConfigurationBuilder" />.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-warning-configuration">Configuration for specific messages</see> for more information and
/// See <see href="https://aka.ms/efcore-docs-warning-configuration">Configuration for specific messages</see> for more information and
/// examples.
/// </remarks>
/// <param name="warningBehavior">The option to change.</param>
Expand Down
12 changes: 6 additions & 6 deletions src/EFCore/Diagnostics/WarningsConfigurationBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.EntityFrameworkCore.Diagnostics;
/// </para>
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-warning-configuration">Configuration for specific messages</see> for more information and
/// See <see href="https://aka.ms/efcore-docs-warning-configuration">Configuration for specific messages</see> for more information and
/// examples.
/// </remarks>
public class WarningsConfigurationBuilder
Expand All @@ -40,7 +40,7 @@ public WarningsConfigurationBuilder(DbContextOptionsBuilder optionsBuilder)
/// The database provider being used may also define provider-specific event IDs in a similar class.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-warning-configuration">Configuration for specific messages</see> for more information and
/// See <see href="https://aka.ms/efcore-docs-warning-configuration">Configuration for specific messages</see> for more information and
/// examples.
/// </para>
/// </remarks>
Expand All @@ -59,7 +59,7 @@ public virtual WarningsConfigurationBuilder Default(WarningBehavior warningBehav
/// The database provider being used may also define provider-specific event IDs in a similar class.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-warning-configuration">Configuration for specific messages</see> for more information and
/// See <see href="https://aka.ms/efcore-docs-warning-configuration">Configuration for specific messages</see> for more information and
/// examples.
/// </para>
/// </remarks>
Expand All @@ -85,7 +85,7 @@ public virtual WarningsConfigurationBuilder Throw(
/// The database provider being used may also define provider-specific event IDs in a similar class.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-warning-configuration">Configuration for specific messages</see> for more information and
/// See <see href="https://aka.ms/efcore-docs-warning-configuration">Configuration for specific messages</see> for more information and
/// examples.
/// </para>
/// </remarks>
Expand All @@ -111,7 +111,7 @@ public virtual WarningsConfigurationBuilder Log(
/// The database provider being used may also define provider-specific event IDs in a similar class.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-warning-configuration">Configuration for specific messages</see> for more information and
/// See <see href="https://aka.ms/efcore-docs-warning-configuration">Configuration for specific messages</see> for more information and
/// examples.
/// </para>
/// </remarks>
Expand All @@ -137,7 +137,7 @@ public virtual WarningsConfigurationBuilder Log(
/// The database provider being used may also define provider-specific event IDs in a similar class.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-warning-configuration">Configuration for specific messages</see> for more information and
/// See <see href="https://aka.ms/efcore-docs-warning-configuration">Configuration for specific messages</see> for more information and
/// examples.
/// </para>
/// </remarks>
Expand Down
20 changes: 10 additions & 10 deletions src/EFCore/Infrastructure/DatabaseFacade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ private IDatabaseFacadeDependencies Dependencies
/// to ensure the database is created using migrations and that all migrations have been applied.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-manage-schemas">Managing database schemas with EF Core</see>
/// and <see href="https://aka.ms/efcore-ensure-created">Database creation APIs</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-manage-schemas">Managing database schemas with EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-ensure-created">Database creation APIs</see> for more information and examples.
/// </para>
/// </remarks>
/// <returns><see langword="true" /> if the database is created, <see langword="false" /> if it already existed.</returns>
Expand Down Expand Up @@ -117,8 +117,8 @@ public virtual bool EnsureCreated()
/// for more information and examples.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-manage-schemas">Managing database schemas with EF Core</see>
/// and <see href="https://aka.ms/efcore-ensure-created">Database creation APIs</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-manage-schemas">Managing database schemas with EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-ensure-created">Database creation APIs</see> for more information and examples.
/// </para>
/// </remarks>
/// <param name="cancellationToken">A <see cref="CancellationToken" /> to observe while waiting for the task to complete.</param>
Expand Down Expand Up @@ -147,8 +147,8 @@ public virtual Task<bool> EnsureCreatedAsync(CancellationToken cancellationToken
/// execution of the test/prototype. Note, however, that data in the database is not preserved.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-manage-schemas">Managing database schemas with EF Core</see>
/// and <see href="https://aka.ms/efcore-ensure-created">Database creation APIs</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-manage-schemas">Managing database schemas with EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-ensure-created">Database creation APIs</see> for more information and examples.
/// </para>
/// </remarks>
/// <returns><see langword="true" /> if the database is deleted, <see langword="false" /> if it did not exist.</returns>
Expand Down Expand Up @@ -179,8 +179,8 @@ public virtual bool EnsureDeleted()
/// for more information and examples.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-manage-schemas">Managing database schemas with EF Core</see>
/// and <see href="https://aka.ms/efcore-ensure-created">Database creation APIs</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-manage-schemas">Managing database schemas with EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-ensure-created">Database creation APIs</see> for more information and examples.
/// </para>
/// </remarks>
/// <param name="cancellationToken">A <see cref="CancellationToken" /> to observe while waiting for the task to complete.</param>
Expand Down Expand Up @@ -208,7 +208,7 @@ public virtual Task<bool> EnsureDeletedAsync(CancellationToken cancellationToken
/// up-to-date with regard to schema creation, etc.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-connections">Database connections in EF Core</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-connections">Database connections in EF Core</see> for more information and examples.
/// </para>
/// </remarks>
/// <returns><see langword="true" /> if the database is available; <see langword="false" /> otherwise.</returns>
Expand Down Expand Up @@ -238,7 +238,7 @@ public virtual bool CanConnect()
/// for more information and examples.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-connections">Database connections in EF Core</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-connections">Database connections in EF Core</see> for more information and examples.
/// </para>
/// </remarks>
/// <param name="cancellationToken">A <see cref="CancellationToken" /> to observe while waiting for the task to complete.</param>
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Infrastructure/DbContextAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Microsoft.EntityFrameworkCore.Infrastructure;
/// to identify which context a migration applies to.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-manage-schemas">Managing database schemas with EF Cor</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-manage-schemas">Managing database schemas with EF Cor</see> for more information and examples.
/// </remarks>
[AttributeUsage(AttributeTargets.Class)]
public sealed class DbContextAttribute : Attribute
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Infrastructure/IModelCacheKeyFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.EntityFrameworkCore.Infrastructure;
/// This service cannot depend on services registered as <see cref="ServiceLifetime.Scoped" />.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-model-caching">EF Core model caching</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-model-caching">EF Core model caching</see> for more information and examples.
/// </para>
/// </remarks>
public interface IModelCacheKeyFactory
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Infrastructure/ModelCacheKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.EntityFrameworkCore.Infrastructure;
/// assuming that all contexts of a given type have the same model.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-model-caching">EF Core model caching</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-model-caching">EF Core model caching</see> for more information and examples.
/// </remarks>
public class ModelCacheKey
{
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Infrastructure/ModelCacheKeyFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Microsoft.EntityFrameworkCore.Infrastructure;
/// This service cannot depend on services registered as <see cref="ServiceLifetime.Scoped" />.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-model-caching">EF Core model caching</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-model-caching">EF Core model caching</see> for more information and examples.
/// </para>
/// </remarks>
public class ModelCacheKeyFactory : IModelCacheKeyFactory
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Metadata/ValueGenerated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Microsoft.EntityFrameworkCore.Metadata;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-modeling">Modeling entity types and relationships</see> and
/// See <see href="https://aka.ms/efcore-value-generation">Value generation in EF Core</see> for more information and examples.
/// See <see href="https://aka.ms/efcore-docs-value-generation">Value generation in EF Core</see> for more information and examples.
/// </para>
/// </remarks>
[Flags]
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/CompiledQueryCacheKeyGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </para>
/// </remarks>
public class CompiledQueryCacheKeyGenerator : ICompiledQueryCacheKeyGenerator
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/EntityShaperExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </remarks>
public class EntityShaperExpression : Expression, IPrintableExpression
{
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/EvaluatableExpressionFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </para>
/// </remarks>
public class EvaluatableExpressionFilter : IEvaluatableExpressionFilter
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/ExpressionEqualityComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </remarks>
public sealed class ExpressionEqualityComparer : IEqualityComparer<Expression?>
{
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/ExpressionPrinter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </remarks>
public class ExpressionPrinter : ExpressionVisitor
{
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/GroupByShaperExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </remarks>
public class GroupByShaperExpression : Expression, IPrintableExpression
{
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/IAsyncQueryProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </para>
/// </remarks>
public interface IAsyncQueryProvider : IQueryProvider
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/ICompiledQueryCacheKeyGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </para>
/// </remarks>
public interface ICompiledQueryCacheKeyGenerator
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/IEntityMaterializerSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </para>
/// </remarks>
public interface IEntityMaterializerSource
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/IEvaluatableExpressionFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </para>
/// </remarks>
public interface IEvaluatableExpressionFilter
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/IEvaluatableExpressionFilterPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </para>
/// </remarks>
public interface IEvaluatableExpressionFilterPlugin
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/IIncludableQueryable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </remarks>
/// <typeparam name="TEntity">The entity type.</typeparam>
/// <typeparam name="TProperty">The property type.</typeparam>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </para>
/// </remarks>
public interface INavigationExpansionExtensibilityHelper
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore/Query/IPrintableExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Microsoft.EntityFrameworkCore.Query;
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-providers">Implementation of database providers and extensions</see>
/// and <see href="https://aka.ms/efcore-how-queries-work">How EF Core queries work</see> for more information and examples.
/// and <see href="https://aka.ms/efcore-docs-how-query-works">How EF Core queries work</see> for more information and examples.
/// </remarks>
public interface IPrintableExpression
{
Expand Down
Loading