Skip to content

Commit

Permalink
Some minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriySvyryd committed Jan 29, 2021
1 parent 220ed08 commit a606008
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Microsoft.EntityFrameworkCore.Metadata
/// <summary>
/// <para>
/// A service typically implemented by database providers that gives access to annotations
/// used by relational EF Core components on various elements of the <see cref="IReadOnlyModel" />.
/// used by relational EF Core components on various elements of the <see cref="IRelationalModel" />.
/// </para>
/// <para>
/// The service lifetime is <see cref="ServiceLifetime.Singleton" />. This means a single instance
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore.Relational/Metadata/Internal/RelationalModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ private static void AddMappedFunctions(RelationalModel databaseModel, IEntityTyp
private static void AddTVFs(RelationalModel relationalModel)
{
var model = relationalModel.Model;
foreach (DbFunction function in relationalModel.Model.GetDbFunctions())
foreach (DbFunction function in model.GetDbFunctions())
{
var entityType = function.IsScalar
? null
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore.Relational/Metadata/SequenceExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace Microsoft.EntityFrameworkCore.Metadata
{
/// <summary>
/// Extension methods for <see cref="IReadOnlySequence" />.
/// Sequence extension methods.
/// </summary>
public static class SequenceExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using System.Collections.Generic;
using JetBrains.Annotations;
using Microsoft.EntityFrameworkCore.Metadata;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Microsoft.EntityFrameworkCore
{
/// <summary>
/// Extension methods for <see cref="IEntityType" /> for SQL Server-specific metadata.
/// Entity type extension methods for SQL Server-specific metadata.
/// </summary>
public static class SqlServerEntityTypeExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
namespace Microsoft.EntityFrameworkCore
{
/// <summary>
/// Extension methods for <see cref="IIndex" /> for SQL Server-specific metadata.
/// Index extension methods for SQL Server-specific metadata.
/// </summary>
public static class SqlServerIndexExtensions
{
Expand Down
2 changes: 1 addition & 1 deletion src/EFCore.SqlServer/Extensions/SqlServerKeyExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Microsoft.EntityFrameworkCore
{
/// <summary>
/// Extension methods for <see cref="IKey" /> for SQL Server-specific metadata.
/// Key extension methods for SQL Server-specific metadata.
/// </summary>
public static class SqlServerKeyExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace Microsoft.EntityFrameworkCore
{
/// <summary>
/// Extension methods for <see cref="IModel" /> for SQL Server-specific metadata.
/// Model extension methods for SQL Server-specific metadata.
/// </summary>
public static class SqlServerModelExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using JetBrains.Annotations;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Metadata.Internal;
using Microsoft.EntityFrameworkCore.SqlServer.Internal;
using Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal;
using Microsoft.EntityFrameworkCore.Storage;
Expand All @@ -18,7 +17,7 @@
namespace Microsoft.EntityFrameworkCore
{
/// <summary>
/// Extension methods for <see cref="IProperty" /> for SQL Server-specific metadata.
/// Property extension methods for SQL Server-specific metadata.
/// </summary>
public static class SqlServerPropertyExtensions
{
Expand Down

0 comments on commit a606008

Please sign in to comment.