Skip to content

Commit 1b92392

Browse files
fix linter
1 parent 5aa8b4b commit 1b92392

15 files changed

+15
-27
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
with:
120120
dotnet-version: 9.0.x
121121
- name: Run EFCore tests
122-
run: dotnet test src/EFCore.Ydb/test/EfCore.Ydb.FunctionalTests/EntityFrameworkCore.Ydb.FunctionalTests.csproj -l "console;verbosity=detailed"
122+
run: dotnet test src/EFCore.Ydb/test/EntityFrameworkCore.Ydb.FunctionalTests/EntityFrameworkCore.Ydb.FunctionalTests.csproj -l "console;verbosity=detailed"
123123
integration-tests:
124124
runs-on: ubuntu-22.04
125125
strategy:

src/EFCore.Ydb/src/Extensions/YdbServiceCollectionExtensions.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
using EfCore.Ydb.Migrations;
2-
using EfCore.Ydb.Migrations.Internal;
3-
using EfCore.Ydb.Query.Internal;
4-
using EfCore.Ydb.Storage.Internal;
5-
using EfCore.Ydb.Update.Internal;
61
using EntityFrameworkCore.Ydb.Diagnostics.Internal;
72
using EntityFrameworkCore.Ydb.Infrastructure;
83
using EntityFrameworkCore.Ydb.Infrastructure.Internal;
94
using EntityFrameworkCore.Ydb.Metadata.Conventions;
105
using EntityFrameworkCore.Ydb.Metadata.Internal;
116
using EntityFrameworkCore.Ydb.Migrations;
7+
using EntityFrameworkCore.Ydb.Migrations.Internal;
128
using EntityFrameworkCore.Ydb.Query.Internal;
139
using EntityFrameworkCore.Ydb.Storage.Internal;
10+
using EntityFrameworkCore.Ydb.Update.Internal;
1411
using Microsoft.EntityFrameworkCore.Diagnostics;
1512
using Microsoft.EntityFrameworkCore.Infrastructure;
1613
using Microsoft.EntityFrameworkCore.Metadata;

src/EFCore.Ydb/src/Migrations/Internal/YdbHistoryRepository.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.Globalization;
55
using System.Threading;
66
using System.Threading.Tasks;
7-
using EfCore.Ydb.Storage.Internal;
87
using EntityFrameworkCore.Ydb.Storage.Internal;
98
using Microsoft.EntityFrameworkCore.Diagnostics;
109
using Microsoft.EntityFrameworkCore.Migrations;
@@ -13,7 +12,7 @@
1312
using Ydb.Sdk;
1413
using Ydb.Sdk.Ado;
1514

16-
namespace EfCore.Ydb.Migrations.Internal;
15+
namespace EntityFrameworkCore.Ydb.Migrations.Internal;
1716

1817
public class YdbHistoryRepository(HistoryRepositoryDependencies dependencies)
1918
: HistoryRepository(dependencies), IHistoryRepository

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using EntityFrameworkCore.Ydb.Query.Internal;
21
using Microsoft.EntityFrameworkCore.Query;
32

4-
namespace EfCore.Ydb.Query.Internal;
3+
namespace EntityFrameworkCore.Ydb.Query.Internal;
54

65
public class YdbQueryCompilationContextFactory(
76
QueryCompilationContextDependencies dependencies,

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using EntityFrameworkCore.Ydb.Query.Internal;
21
using Microsoft.EntityFrameworkCore.Query;
32

4-
namespace EfCore.Ydb.Query.Internal;
3+
namespace EntityFrameworkCore.Ydb.Query.Internal;
54

65
public class YdbQuerySqlGeneratorFactory(QuerySqlGeneratorDependencies dependencies) : IQuerySqlGeneratorFactory
76
{

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Linq.Expressions;
2-
using EfCore.Ydb.Query.Internal;
32
using Microsoft.EntityFrameworkCore.Query;
43

54
namespace EntityFrameworkCore.Ydb.Query.Internal;

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using EntityFrameworkCore.Ydb.Query.Internal;
21
using Microsoft.EntityFrameworkCore.Query;
32

4-
namespace EfCore.Ydb.Query.Internal;
3+
namespace EntityFrameworkCore.Ydb.Query.Internal;
54

65
public sealed class YdbQueryTranslationPostprocessorFactory(
76
QueryTranslationPostprocessorDependencies dependencies,

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using EfCore.Ydb.Query.Internal;
2-
using EfCore.Ydb.Storage.Internal;
31
using EntityFrameworkCore.Ydb.Storage.Internal;
42
using Microsoft.EntityFrameworkCore.Query;
53

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using EntityFrameworkCore.Ydb.Query.Internal;
21
using Microsoft.EntityFrameworkCore.Query;
32

4-
namespace EfCore.Ydb.Query.Internal;
3+
namespace EntityFrameworkCore.Ydb.Query.Internal;
54

65
public class YdbQueryableMethodTranslatingExpressionVisitorFactory(
76
QueryableMethodTranslatingExpressionVisitorDependencies dependencies,

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using System.Linq.Expressions;
66
using System.Reflection;
77
using System.Text;
8-
using EfCore.Ydb.Query.Internal;
98
using Microsoft.EntityFrameworkCore.Query;
109
using Microsoft.EntityFrameworkCore.Query.SqlExpressions;
1110
using Microsoft.EntityFrameworkCore.Storage;

0 commit comments

Comments
 (0)