Skip to content

Commit

Permalink
Change namespace for entry-point extension methods
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed Oct 12, 2023
1 parent 3a9bad2 commit 4f01497
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using Microsoft.EntityFrameworkCore.Infrastructure;
using Npgsql;
using Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure;
using Pgvector.EntityFrameworkCore;
using Pgvector.Npgsql;

namespace Pgvector.EntityFrameworkCore;
namespace Microsoft.EntityFrameworkCore;

public static class VectorDbContextOptionsBuilderExtensions
{
Expand Down
3 changes: 2 additions & 1 deletion src/Pgvector/Npgsql/VectorExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Npgsql.TypeMapping;
using Pgvector.Npgsql;

namespace Pgvector.Npgsql;
namespace Npgsql;

public static class VectorExtensions
{
Expand Down

0 comments on commit 4f01497

Please sign in to comment.