Skip to content

Commit c282719

Browse files
committed
Ef.Ydb -> EfCore.Ydb
1 parent dc4baea commit c282719

File tree

43 files changed

+63
-63
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+63
-63
lines changed

src/Ef.Ydb/src/Diagnostics/Internal/YdbCommandInterceptor.cs renamed to src/EfCore.Ydb/src/Diagnostics/Internal/YdbCommandInterceptor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Data.Common;
22
using Microsoft.EntityFrameworkCore.Diagnostics;
33

4-
namespace Ef.Ydb.Diagnostics.Internal;
4+
namespace EfCore.Ydb.Diagnostics.Internal;
55

66
// TODO: Temporary for debugging
77
public class YdbCommandInterceptor : DbCommandInterceptor

src/Ef.Ydb/src/Diagnostics/Internal/YdbLoggingDefinitions.cs renamed to src/EfCore.Ydb/src/Diagnostics/Internal/YdbLoggingDefinitions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.EntityFrameworkCore.Diagnostics;
22

3-
namespace Ef.Ydb.Diagnostics.Internal;
3+
namespace EfCore.Ydb.Diagnostics.Internal;
44

55
public class YdbLoggingDefinitions : RelationalLoggingDefinitions
66
{

src/Ef.Ydb/src/Ef.Ydb.csproj renamed to src/EfCore.Ydb/src/EfCore.Ydb.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<RootNamespace>Ef.Ydb</RootNamespace>
5+
<RootNamespace>EfCore.Ydb</RootNamespace>
66
<Nullable>enable</Nullable>
7-
<PackageId>Ef.Ydb</PackageId>
7+
<PackageId>EfCore.Ydb</PackageId>
88
</PropertyGroup>
99

1010
<ItemGroup>

src/Ef.Ydb/src/Extensions/EfYdbContextOptionsBuilderExtensions.cs renamed to src/EfCore.Ydb/src/Extensions/YdbContextOptionsBuilderExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
2-
using Ef.Ydb.Infrastructure;
3-
using Ef.Ydb.Infrastructure.Internal;
2+
using EfCore.Ydb.Infrastructure;
3+
using EfCore.Ydb.Infrastructure.Internal;
44
using Microsoft.EntityFrameworkCore;
55
using Microsoft.EntityFrameworkCore.Infrastructure;
66

7-
namespace Ef.Ydb.Extensions;
7+
namespace EfCore.Ydb.Extensions;
88

99
public static class YdbContextOptionsBuilderExtensions
1010
{

src/Ef.Ydb/src/Extensions/YdbServiceCollectionExtensions.cs renamed to src/EfCore.Ydb/src/Extensions/YdbServiceCollectionExtensions.cs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
using Ef.Ydb.Diagnostics.Internal;
2-
using Ef.Ydb.Infrastructure;
3-
using Ef.Ydb.Infrastructure.Internal;
4-
using Ef.Ydb.Metadata.Conventions;
5-
using Ef.Ydb.Metadata.Internal;
6-
using Ef.Ydb.Migrations;
7-
using Ef.Ydb.Migrations.Internal;
8-
using Ef.Ydb.Query.Internal;
9-
using Ef.Ydb.Storage.Internal;
10-
using Ef.Ydb.Update.Internal;
1+
using EfCore.Ydb.Diagnostics.Internal;
2+
using EfCore.Ydb.Infrastructure;
3+
using EfCore.Ydb.Infrastructure.Internal;
4+
using EfCore.Ydb.Metadata.Conventions;
5+
using EfCore.Ydb.Metadata.Internal;
6+
using EfCore.Ydb.Migrations;
7+
using EfCore.Ydb.Migrations.Internal;
8+
using EfCore.Ydb.Query.Internal;
9+
using EfCore.Ydb.Storage.Internal;
10+
using EfCore.Ydb.Update.Internal;
1111
using Microsoft.EntityFrameworkCore.Diagnostics;
1212
using Microsoft.EntityFrameworkCore.Infrastructure;
1313
using Microsoft.EntityFrameworkCore.Metadata;
@@ -18,7 +18,7 @@
1818
using Microsoft.EntityFrameworkCore.Update;
1919
using Microsoft.Extensions.DependencyInjection;
2020

21-
namespace Ef.Ydb.Extensions;
21+
namespace EfCore.Ydb.Extensions;
2222

2323
public static class YdbServiceCollectionExtensions
2424
{

src/Ef.Ydb/src/Infrastructure/EntityFrameworkYdbServicesBuilder.cs renamed to src/EfCore.Ydb/src/Infrastructure/EntityFrameworkYdbServicesBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Microsoft.EntityFrameworkCore.Infrastructure;
44
using Microsoft.Extensions.DependencyInjection;
55

6-
namespace Ef.Ydb.Infrastructure;
6+
namespace EfCore.Ydb.Infrastructure;
77

88
public class EntityFrameworkYdbServicesBuilder : EntityFrameworkRelationalServicesBuilder
99
{

src/Ef.Ydb/src/Infrastructure/Internal/YdbModelValidator.cs renamed to src/EfCore.Ydb/src/Infrastructure/Internal/YdbModelValidator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.EntityFrameworkCore.Infrastructure;
22

3-
namespace Ef.Ydb.Infrastructure.Internal;
3+
namespace EfCore.Ydb.Infrastructure.Internal;
44

55
// TODO: Not required for mvp
66
public class YdbModelValidator : RelationalModelValidator

src/Ef.Ydb/src/Infrastructure/Internal/YdbOptionsExtension.cs renamed to src/EfCore.Ydb/src/Infrastructure/Internal/YdbOptionsExtension.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using System.Collections.Generic;
2-
using Ef.Ydb.Extensions;
2+
using EfCore.Ydb.Extensions;
33
using Microsoft.EntityFrameworkCore.Infrastructure;
44
using Microsoft.Extensions.DependencyInjection;
55

6-
namespace Ef.Ydb.Infrastructure.Internal;
6+
namespace EfCore.Ydb.Infrastructure.Internal;
77

88
public class YdbOptionsExtension : RelationalOptionsExtension
99
{

src/Ef.Ydb/src/Infrastructure/YdbDbContextOptionsBuilder.cs renamed to src/EfCore.Ydb/src/Infrastructure/YdbDbContextOptionsBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using Ef.Ydb.Infrastructure.Internal;
1+
using EfCore.Ydb.Infrastructure.Internal;
22
using Microsoft.EntityFrameworkCore;
33
using Microsoft.EntityFrameworkCore.Infrastructure;
44

5-
namespace Ef.Ydb.Infrastructure;
5+
namespace EfCore.Ydb.Infrastructure;
66

77
public class YdbDbContextOptionsBuilder
88
: RelationalDbContextOptionsBuilder<YdbDbContextOptionsBuilder, YdbOptionsExtension>

src/Ef.Ydb/src/Metadata/Conventions/YdbConventionSetBuilder.cs renamed to src/EfCore.Ydb/src/Metadata/Conventions/YdbConventionSetBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure;
22

3-
namespace Ef.Ydb.Metadata.Conventions;
3+
namespace EfCore.Ydb.Metadata.Conventions;
44

55
public class YdbConventionSetBuilder
66
: RelationalConventionSetBuilder

0 commit comments

Comments
 (0)