Skip to content

Commit 0a26aed

Browse files
fix linter
1 parent 1b92392 commit 0a26aed

19 files changed

+18
-22
lines changed

src/EFCore.Ydb/src/Query/Internal/Translators/StubTranslator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Microsoft.EntityFrameworkCore.Query;
77
using Microsoft.EntityFrameworkCore.Query.SqlExpressions;
88

9-
namespace EfCore.Ydb.Query.Internal.Translators;
9+
namespace EntityFrameworkCore.Ydb.Query.Internal.Translators;
1010

1111
// TODO: Remove this class. Temporary stub for debug only
1212
public class StubTranslator : IMethodCallTranslator, IMemberTranslator

src/EFCore.Ydb/src/Query/Internal/Translators/YdbQueryableAggregateMethodTranslator.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
using System.Collections.Generic;
22
using System.Linq;
33
using System.Reflection;
4-
using EfCore.Ydb.Utilities;
5-
using EntityFrameworkCore.Ydb.Query.Internal;
4+
using EntityFrameworkCore.Ydb.Utilities;
65
using Microsoft.EntityFrameworkCore;
76
using Microsoft.EntityFrameworkCore.Diagnostics;
87
using Microsoft.EntityFrameworkCore.Query;
98
using Microsoft.EntityFrameworkCore.Query.SqlExpressions;
109
using Microsoft.EntityFrameworkCore.Storage;
1110

12-
namespace EfCore.Ydb.Query.Internal.Translators;
11+
namespace EntityFrameworkCore.Ydb.Query.Internal.Translators;
1312

1413
public class YdbQueryableAggregateMethodTranslator(
1514
YdbSqlExpressionFactory sqlExpressionFactory,

src/EFCore.Ydb/src/Query/Internal/YdbAggregateMethodCallTranslatorProvider.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using EfCore.Ydb.Query.Internal;
2-
using EfCore.Ydb.Query.Internal.Translators;
1+
using EntityFrameworkCore.Ydb.Query.Internal.Translators;
32
using Microsoft.EntityFrameworkCore.Query;
43

54
namespace EntityFrameworkCore.Ydb.Query.Internal;

src/EFCore.Ydb/src/Query/Internal/YdbMemberTranslatorProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using EfCore.Ydb.Query.Internal.Translators;
1+
using EntityFrameworkCore.Ydb.Query.Internal.Translators;
22
using Microsoft.EntityFrameworkCore.Query;
33

44
namespace EntityFrameworkCore.Ydb.Query.Internal;

src/EFCore.Ydb/src/Query/Internal/YdbMethodCallTranslatorProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using EfCore.Ydb.Query.Internal.Translators;
1+
using EntityFrameworkCore.Ydb.Query.Internal.Translators;
22
using Microsoft.EntityFrameworkCore.Query;
33

44
namespace EntityFrameworkCore.Ydb.Query.Internal;

src/EFCore.Ydb/src/Storage/Internal/Mapping/YdbBoolTypeMapping.cs

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

3-
namespace EfCore.Ydb.Storage.Internal.Mapping;
3+
namespace EntityFrameworkCore.Ydb.Storage.Internal.Mapping;
44

55
public class YdbBoolTypeMapping : BoolTypeMapping
66
{

src/EFCore.Ydb/src/Storage/Internal/Mapping/YdbBytesTypeMapping.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.EntityFrameworkCore.Storage;
33
using Microsoft.EntityFrameworkCore.Storage.Json;
44

5-
namespace EfCore.Ydb.Storage.Internal.Mapping;
5+
namespace EntityFrameworkCore.Ydb.Storage.Internal.Mapping;
66

77
public class YdbBytesTypeMapping : RelationalTypeMapping
88
{

src/EFCore.Ydb/src/Storage/Internal/Mapping/YdbDecimalTypeMapping.cs

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

4-
namespace EfCore.Ydb.Storage.Internal.Mapping;
4+
namespace EntityFrameworkCore.Ydb.Storage.Internal.Mapping;
55

66
public class YdbDecimalTypeMapping : DecimalTypeMapping
77
{

src/EFCore.Ydb/src/Storage/Internal/Mapping/YdbJsonTypeMapping.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Text.Json;
99
using Microsoft.EntityFrameworkCore.Storage;
1010

11-
namespace EfCore.Ydb.Storage.Internal.Mapping;
11+
namespace EntityFrameworkCore.Ydb.Storage.Internal.Mapping;
1212

1313
public class YdbJsonTypeMapping : JsonTypeMapping
1414
{

src/EFCore.Ydb/src/Storage/Internal/Mapping/YdbStringTypeMapping.cs

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

6-
namespace EfCore.Ydb.Storage.Internal.Mapping;
6+
namespace EntityFrameworkCore.Ydb.Storage.Internal.Mapping;
77

88
public class YdbStringTypeMapping : RelationalTypeMapping
99
{

0 commit comments

Comments
 (0)