Skip to content

Commit

Permalink
Update broken links
Browse files Browse the repository at this point in the history
Resolves #28373
  • Loading branch information
smitpatel committed Jul 18, 2022
1 parent 0bf05f1 commit 72e4780
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
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

0 comments on commit 72e4780

Please sign in to comment.