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

Update broken links #28473

Merged
1 commit merged into from
Jul 19, 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
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public static Task MigrateAsync(
/// consider using <see cref="ExecuteSqlInterpolated" /> to create parameters.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down Expand Up @@ -178,7 +178,7 @@ public static int ExecuteSqlRaw(
/// arguments. Any parameter values you supply will automatically be converted to a DbParameter.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down Expand Up @@ -215,7 +215,7 @@ public static int ExecuteSqlInterpolated(
/// consider using <see cref="ExecuteSqlInterpolated" /> to create parameters.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down Expand Up @@ -280,7 +280,7 @@ public static int ExecuteSqlRaw(
/// arguments. Any parameter values you supply will automatically be converted to a DbParameter.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down Expand Up @@ -315,7 +315,7 @@ public static Task<int> ExecuteSqlInterpolatedAsync(
/// into this method. Doing so may expose your application to SQL injection attacks.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down Expand Up @@ -357,7 +357,7 @@ public static Task<int> ExecuteSqlRawAsync(
/// consider using <see cref="ExecuteSqlInterpolated" /> to create parameters.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down Expand Up @@ -398,7 +398,7 @@ public static Task<int> ExecuteSqlRawAsync(
/// consider using <see cref="ExecuteSqlInterpolated" /> to create parameters.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public static DbCommand CreateDbCommand(this IQueryable source)
/// placeholders as above (<c>{0}</c>), you can also use named placeholders directly in the SQL query string.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down Expand Up @@ -114,7 +114,7 @@ public static IQueryable<TEntity> FromSqlRaw<TEntity>(
/// you supply will automatically be converted to a <see cref="DbParameter" />.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </para>
/// </remarks>
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore.Relational/Metadata/ISqlQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.EntityFrameworkCore.Metadata;
/// Represents a SQL query string.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </remarks>
public interface ISqlQuery : ITableBase
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore.Relational/Metadata/ISqlQueryColumn.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.EntityFrameworkCore.Metadata;
/// Represents a column in a SQL query.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </remarks>
public interface ISqlQueryColumn : IColumnBase
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore.Relational/Metadata/ISqlQueryColumnMapping.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.EntityFrameworkCore.Metadata;
/// Represents property mapping to a SQL query column.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </remarks>
public interface ISqlQueryColumnMapping : IColumnMappingBase
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore.Relational/Metadata/ISqlQueryMapping.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.EntityFrameworkCore.Metadata;
/// Represents entity type mapping to a SQL query.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// See <see href="https://aka.ms/efcore-docs-raw-sql">Executing raw SQL commands with EF Core</see>
/// for more information and examples.
/// </remarks>
public interface ISqlQueryMapping : ITableMappingBase
Expand Down