From f3c88e0830bdbd95d1a3e93f496218ad4ff58e3b Mon Sep 17 00:00:00 2001 From: mrchatam <287639636+mrchatam@users.noreply.github.com> Date: Fri, 11 Sep 2026 23:06:52 +0000 Subject: [PATCH] docs: fix 'allows to' grammar in ADR 0051 --- docs/decisions/0051-entity-framework-as-connector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/decisions/0051-entity-framework-as-connector.md b/docs/decisions/0051-entity-framework-as-connector.md index f4a5b8f5d9b7..4345646c9e68 100644 --- a/docs/decisions/0051-entity-framework-as-connector.md +++ b/docs/decisions/0051-entity-framework-as-connector.md @@ -12,7 +12,7 @@ deciders: sergeymenshykh, markwallace, rbarreto, westey-m This ADR contains investigation results about adding Entity Framework as Vector Store connector to the Semantic Kernel codebase. -Entity Framework is a modern object-relation mapper that allows to build a clean, portable, and high-level data access layer with .NET (C#) across a variety of databases, including SQL Database (on-premises and Azure), SQLite, MySQL, PostgreSQL, Azure Cosmos DB and more. It supports LINQ queries, change tracking, updates and schema migrations. +Entity Framework is a modern object-relation mapper that allows you to build a clean, portable, and high-level data access layer with .NET (C#) across a variety of databases, including SQL Database (on-premises and Azure), SQLite, MySQL, PostgreSQL, Azure Cosmos DB and more. It supports LINQ queries, change tracking, updates and schema migrations. One of the huge benefits of Entity Framework for Semantic Kernel is the support of multiple databases. In theory, one Entity Framework connector can work as a hub to multiple databases at the same time, which should simplify the development and maintenance of integration with these databases.