Skip to content

Commit

Permalink
Review updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcvickers committed Aug 10, 2021
1 parent 3e0d4dd commit 530c2fa
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static DbContextOptionsBuilder<TContext> UseCosmos<TContext>(
cosmosOptionsAction);

/// <summary>
/// Configures the context to connect to a Azure Cosmos database.
/// Configures the context to connect to an Azure Cosmos database.
/// </summary>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="accountEndpoint"> The account end-point to connect to. </param>
Expand Down Expand Up @@ -96,7 +96,7 @@ public static DbContextOptionsBuilder<TContext> UseCosmos<TContext>(
cosmosOptionsAction);

/// <summary>
/// Configures the context to connect to a Azure Cosmos database.
/// Configures the context to connect to an Azure Cosmos database.
/// </summary>
/// <param name="optionsBuilder"> The builder being used to configure the context. </param>
/// <param name="connectionString"> The connection string of the database to connect to. </param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ public static class CosmosServiceCollectionExtensions
{
/// <summary>
/// <para>
/// Registers the given Entity Framework <see cref="DbContext"/> as a service in the <see cref="IServiceCollection" />
/// and configures it to to connect to a Azure Cosmos database.
/// Registers the given Entity Framework <see cref="DbContext" /> as a service in the <see cref="IServiceCollection" />
/// and configures it to connect to an Azure Cosmos database.
/// </para>
/// <para>
/// This method is a shortcut for configuring a <see cref="DbContext"/> to use Cosmos. It does not support all options.
/// This method is a shortcut for configuring a <see cref="DbContext" /> to use Cosmos. It does not support all options.
/// Use <see cref="M:EntityFrameworkServiceCollectionExtensions.AddDbContext"/> and related methods for full control of
/// this process.
/// </para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ public static class InMemoryServiceCollectionExtensions
{
/// <summary>
/// <para>
/// Registers the given Entity Framework <see cref="DbContext"/> as a service in the <see cref="IServiceCollection" />
/// Registers the given Entity Framework <see cref="DbContext" /> as a service in the <see cref="IServiceCollection" />
/// and configures it to use the Entity Framework in-memory database.
/// </para>
/// <para>
/// This method is a shortcut for configuring a <see cref="DbContext"/> to use the in-memory database. It does not support
/// This method is a shortcut for configuring a <see cref="DbContext" /> to use the in-memory database. It does not support
/// all options. Use <see cref="M:EntityFrameworkServiceCollectionExtensions.AddDbContext"/> and related methods for full
/// control of this process.
/// </para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public static class SqlServerServiceCollectionExtensions
{
/// <summary>
/// <para>
/// Registers the given Entity Framework <see cref="DbContext"/> as a service in the <see cref="IServiceCollection" />
/// Registers the given Entity Framework <see cref="DbContext" /> as a service in the <see cref="IServiceCollection" />
/// and configures it to connect to a SQL Server database.
/// </para>
/// <para>
/// This method is a shortcut for configuring a <see cref="DbContext"/> to use SQL Server. It does not support all options.
/// This method is a shortcut for configuring a <see cref="DbContext" /> to use SQL Server. It does not support all options.
/// Use <see cref="M:EntityFrameworkServiceCollectionExtensions.AddDbContext"/> and related methods for full control of
/// this process.
/// </para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ public static class SqliteServiceCollectionExtensions
{
/// <summary>
/// <para>
/// Registers the given Entity Framework <see cref="DbContext"/> as a service in the <see cref="IServiceCollection" />
/// Registers the given Entity Framework <see cref="DbContext" /> as a service in the <see cref="IServiceCollection" />
/// and configures it to connect to a SQLite database.
/// </para>
/// <para>
/// This method is a shortcut for configuring a <see cref="DbContext"/> to use SQLite. It does not support all options.
/// This method is a shortcut for configuring a <see cref="DbContext" /> to use SQLite. It does not support all options.
/// Use <see cref="M:EntityFrameworkServiceCollectionExtensions.AddDbContext"/> and related methods for full control of
/// this process.
/// </para>
Expand Down

0 comments on commit 530c2fa

Please sign in to comment.