Skip to content

Commit

Permalink
Update authors
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriySvyryd committed Jan 18, 2025
1 parent c3e2876 commit e286214
Show file tree
Hide file tree
Showing 194 changed files with 194 additions and 195 deletions.
2 changes: 1 addition & 1 deletion .openpublishing.publish.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
],
"notification_subscribers": [
"avickers@microsoft.com",
"sampatel@microsoft.com",
"[email protected]"
],
"sync_notification_subscribers": [],
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/change-tracking/change-detection.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Change Detection and Notifications - EF Core
description: Detecting property and relationship changes using DetectChanges or notifications
author: ajcvickers
author: SamMonoRT
ms.date: 12/30/2020
uid: core/change-tracking/change-detection
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/change-tracking/debug-views.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Change Tracker Debugging - EF Core
description: Using the ChangeTracker DebugView and log messages to debug EF Core change tracking
author: ajcvickers
author: SamMonoRT
ms.date: 12/30/2020
uid: core/change-tracking/debug-views
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/change-tracking/entity-entries.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Accessing Tracked Entities - EF Core
description: Using EntityEntry, DbContext.Entries, and DbSet.Local to access tracked entities
author: ajcvickers
author: SamMonoRT
ms.date: 12/30/2020
uid: core/change-tracking/entity-entries
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/change-tracking/explicit-tracking.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Explicitly Tracking Entities - EF Core
description: Explicitly tracking entities with DbContext using Add, Attach, Update, and Remove
author: ajcvickers
author: SamMonoRT
ms.date: 12/30/2020
uid: core/change-tracking/explicit-tracking
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Identity Resolution - EF Core
description: Resolving multiple entity instances into a single instance using primary key values
author: ajcvickers
author: SamMonoRT
ms.date: 12/30/2020
uid: core/change-tracking/identity-resolution
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/change-tracking/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Change Tracking - EF Core
description: Overview of change tracking for EF Core
author: ajcvickers
author: SamMonoRT
ms.date: 12/30/2020
uid: core/change-tracking/index
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/change-tracking/miscellaneous.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Additional Change Tracking Features - EF Core
description: Miscellaneous features and scenarios involving EF Core change tracking
author: ajcvickers
author: SamMonoRT
ms.date: 11/15/2021
uid: core/change-tracking/miscellaneous
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Changing Foreign Keys and Navigations - EF Core
description: How to change relationships between entities by manipulating foreign keys and navigations
author: ajcvickers
author: SamMonoRT
ms.date: 12/30/2020
uid: core/change-tracking/relationship-changes
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/dbcontext-configuration/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: DbContext Lifetime, Configuration, and Initialization - EF Core
description: Patterns for creating and managing DbContext instances with or without dependency injection
author: ajcvickers
author: SamMonoRT
ms.date: 11/07/2020
uid: core/dbcontext-configuration/index
---
Expand Down
3 changes: 1 addition & 2 deletions entity-framework/core/get-started/winforms.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
---
title: Get Started with Windows Forms - EF Core
description: Getting started tutorial for using Windows Forms (WinForms) with Entity Framework Core
author: ajcvickers
ms.author: avickers
author: SamMonoRT
ms.date: 08/04/2021
uid: core/get-started/winforms
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Overview of Entity Framework Core - EF Core
description: General introductory overview of Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 9/20/2020
uid: core/index
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/learn-more/community-standups.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: .NET Data Community Standups
description: Details and links for each episode of the .NET Data/EF Community Standup
author: ajcvickers
author: SamMonoRT
ms.date: 02/23/2024
uid: core/learn-more/community-standups
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Using diagnostic listeners - EF Core
description: Using DiagnosticListener for global consumption of EF Core diagnostics
author: ajcvickers
author: SamMonoRT
ms.date: 10/16/2020
uid: core/logging-events-diagnostics/diagnostic-listeners
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/logging-events-diagnostics/events.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: .NET events - EF Core
description: .NET events defined by EF Core
author: ajcvickers
author: SamMonoRT
ms.date: 10/15/2020
uid: core/logging-events-diagnostics/events
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Using Microsoft.Extensions.Logging - EF Core
description: Logging from EF Core using Microsoft.Extensions.Logging in ASP.NET Core and other application types
author: ajcvickers
author: SamMonoRT
ms.date: 10/15/2020
uid: core/logging-events-diagnostics/extensions-logging
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/logging-events-diagnostics/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Overview of logging and interception - EF Core
description: Overview of logging, events, interceptors, and diagnostics for EF Core
author: ajcvickers
author: SamMonoRT
ms.date: 11/15/2021
uid: core/logging-events-diagnostics/index
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Interceptors - EF Core
description: Interception for database operations and other events
author: ajcvickers
author: SamMonoRT
ms.date: 11/15/2021
uid: core/logging-events-diagnostics/interceptors
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Simple logging - EF Core
description: Logging from an EF Core DbContext using LogTo
author: ajcvickers
author: SamMonoRT
ms.date: 10/03/2020
uid: core/logging-events-diagnostics/simple-logging
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/modeling/backing-field.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Backing Fields - EF Core
description: Configuring backing fields for properties in an Entity Framework Core model
author: ajcvickers
author: SamMonoRT
ms.date: 11/15/2021
uid: core/modeling/backing-field
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/modeling/constructors.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Entity types with constructors - EF Core
description: Using constructors to bind data with Entity Framework Core model
author: ajcvickers
author: SamMonoRT
ms.date: 02/23/2018
uid: core/modeling/constructors
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/modeling/relationships.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Introduction to relationships - EF Core
description: How to configure relationships between entity types when using Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Conventions for relationship discovery - EF Core
description: How navigations, foreign keys, and other aspects of relationships are discovered by EF Core model building conventions
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships/conventions
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Foreign and principal keys in relationships - EF Core
description: The use and configuration of foreign keys, alternate keys, and primary keys in relationships
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships/foreign-and-principal-keys
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/modeling/relationships/glossary.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Glossary of relationship terms - EF Core
description: A glossary of the terms used when mapping foreign keys and relationships in Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships/glossary
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Many-to-many relationships - EF Core
description: How to configure many-to-many relationships between entity types when using Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships/many-to-many
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Mapping attributes (aka Data Annotations) for relationships - EF Core
description: Using mapping attributes (also know as Data Annotations) to configure Entity Framework Core relationships
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships/mapping-attributes
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Relationship navigations - EF Core
description: Reference and collection navigations in Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships/navigations
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: One-to-many relationships - EF Core
description: How to configure one-to-many relationships between entity types when using Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships/one-to-many
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/modeling/relationships/one-to-one.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: One-to-one relationships - EF Core
description: How to configure one-to-one relationships between entity types when using Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 03/30/2023
uid: core/modeling/relationships/one-to-one
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/modeling/value-comparers.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Value Comparers - EF Core
description: Using value comparers to control how EF Core compares property values
author: ajcvickers
author: SamMonoRT
ms.date: 11/15/2021
uid: core/modeling/value-comparers
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/modeling/value-conversions.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Value Conversions - EF Core
description: Configuring value converters in an Entity Framework Core model
author: ajcvickers
author: SamMonoRT
ms.date: 01/16/2021
uid: core/modeling/value-conversions
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/providers/in-memory/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: In-memory Database Provider - EF Core
description: Information on the Entity Framework Core in-memory database provider
author: ajcvickers
author: SamMonoRT
ms.date: 02/11/2023
uid: core/providers/in-memory/index
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/providers/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Database Providers - EF Core
description: Information about specific supported Entity Framework Core providers and about providers in general
author: ajcvickers
author: SamMonoRT
ms.date: 12/13/2022
uid: core/providers/index
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/providers/provider-log.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Log of provider-impacting changes - EF Core
description: A log of changes in Entity Framework Core which impact providers
author: ajcvickers
author: SamMonoRT
ms.date: 08/08/2018
uid: core/providers/provider-log
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/providers/sql-server/hierarchyid.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Microsoft SQL Server Database Provider - Hierarchical Data - EF Core
description: Using hierarchical data with the Entity Framework Core Microsoft SQL Server database provider
author: ajcvickers
author: SamMonoRT
ms.date: 03/11/2023
uid: core/providers/sql-server/hierarchyid
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Microsoft SQL Server Database Provider - Temporal Tables - EF Core
description: Using SQL Server/Azure SQL temporal tables (aka system-versioned tables) with EF Core
author: ajcvickers
author: SamMonoRT
ms.date: 02/11/2023
uid: core/providers/sql-server/temporal-tables
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/providers/writing-a-provider.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Writing a Database Provider - EF Core
description: Information on writing a new Entity Framework Core provider
author: ajcvickers
author: SamMonoRT
ms.date: 10/27/2016
uid: core/providers/writing-a-provider
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/querying/how-query-works.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: How Queries Work - EF Core
description: General information on how Entity Framework Core internally compiles and executes queries
author: ajcvickers
author: SamMonoRT
ms.date: 03/17/2020
uid: core/querying/how-query-works
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/saving/basic.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Basic SaveChanges - EF Core
description: Basic information on adding, updating and removing data using SaveChanges with Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 4/30/2023
uid: core/saving/basic
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/saving/cascade-delete.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Cascade Delete - EF Core
description: Configuring cascading behaviors triggered when an entity is deleted or severed from its principal/parent
author: ajcvickers
author: SamMonoRT
ms.date: 08/10/2021
uid: core/saving/cascade-delete
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/saving/concurrency.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Handling Concurrency Conflicts - EF Core
description: Managing conflicts when the same data is updated concurrently with Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 10/19/2022
uid: core/saving/concurrency
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/saving/disconnected-entities.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Disconnected Entities - EF Core
description: Working with disconnected, untracked entities across multiple context instances in Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 10/27/2016
uid: core/saving/disconnected-entities
---
Expand Down
2 changes: 1 addition & 1 deletion entity-framework/core/saving/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Saving Data - EF Core
description: Overview of saving data with Entity Framework Core
author: ajcvickers
author: SamMonoRT
ms.date: 10/10/2022
uid: core/saving/index
---
Expand Down
Loading

0 comments on commit e286214

Please sign in to comment.