From 47f31d5b74387a6e436d274a061e29d634720ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Leb=C3=A9e?= Date: Tue, 6 Mar 2018 19:59:17 -0600 Subject: [PATCH] removed the namespace extensions which was just useless. --- .../Extensions/DbContextExtensions.cs | 3 +-- .../PoweredSoft.DynamicLinq.EntityFramework.csproj | 3 +++ PoweredSoft.DynamicLinq.Test/ComplexQueriesTests.cs | 1 - PoweredSoft.DynamicLinq.Test/ConstantTests.cs | 1 - PoweredSoft.DynamicLinq.Test/EntityFrameworkTests.cs | 4 ++-- PoweredSoft.DynamicLinq.Test/ShortcutTests.cs | 2 +- PoweredSoft.DynamicLinq.Test/SimpleQueriesTest.cs | 2 +- PoweredSoft.DynamicLinq.Test/StringComparision.cs | 2 +- PoweredSoft.DynamicLinq/Extensions/EnumerableExtensions.cs | 2 +- PoweredSoft.DynamicLinq/Extensions/QueryableExtensions.cs | 2 +- PoweredSoft.DynamicLinq/PoweredSoft.DynamicLinq.csproj | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/PoweredSoft.DynamicLinq.EntityFramework/Extensions/DbContextExtensions.cs b/PoweredSoft.DynamicLinq.EntityFramework/Extensions/DbContextExtensions.cs index 438dbbf..001c6cc 100644 --- a/PoweredSoft.DynamicLinq.EntityFramework/Extensions/DbContextExtensions.cs +++ b/PoweredSoft.DynamicLinq.EntityFramework/Extensions/DbContextExtensions.cs @@ -5,10 +5,9 @@ using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; -using PoweredSoft.DynamicLinq.Extensions; using PoweredSoft.DynamicLinq.Fluent; -namespace PoweredSoft.DynamicLinq.EntityFramework.Extensions +namespace PoweredSoft.DynamicLinq.EntityFramework { public static class DbContextExtensions { diff --git a/PoweredSoft.DynamicLinq.EntityFramework/PoweredSoft.DynamicLinq.EntityFramework.csproj b/PoweredSoft.DynamicLinq.EntityFramework/PoweredSoft.DynamicLinq.EntityFramework.csproj index a44f91a..2ad8c1e 100644 --- a/PoweredSoft.DynamicLinq.EntityFramework/PoweredSoft.DynamicLinq.EntityFramework.csproj +++ b/PoweredSoft.DynamicLinq.EntityFramework/PoweredSoft.DynamicLinq.EntityFramework.csproj @@ -10,6 +10,9 @@ https://github.com/PoweredSoft/DynamicLinq entity framework ef dynamic linq https://github.com/PoweredSoft/DynamicLinq + 1.0.1 + 1.0.0.1 + 1.0.0.1 diff --git a/PoweredSoft.DynamicLinq.Test/ComplexQueriesTests.cs b/PoweredSoft.DynamicLinq.Test/ComplexQueriesTests.cs index 87c7909..20d17a9 100644 --- a/PoweredSoft.DynamicLinq.Test/ComplexQueriesTests.cs +++ b/PoweredSoft.DynamicLinq.Test/ComplexQueriesTests.cs @@ -1,6 +1,5 @@ using Microsoft.VisualStudio.TestTools.UnitTesting; using PoweredSoft.DynamicLinq.Dal.Pocos; -using PoweredSoft.DynamicLinq.Extensions; using PoweredSoft.DynamicLinq.Fluent; using PoweredSoft.DynamicLinq.Helpers; using System; diff --git a/PoweredSoft.DynamicLinq.Test/ConstantTests.cs b/PoweredSoft.DynamicLinq.Test/ConstantTests.cs index 690a0eb..aaacda9 100644 --- a/PoweredSoft.DynamicLinq.Test/ConstantTests.cs +++ b/PoweredSoft.DynamicLinq.Test/ConstantTests.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using PoweredSoft.DynamicLinq.Dal.Pocos; -using PoweredSoft.DynamicLinq.Extensions; namespace PoweredSoft.DynamicLinq.Test { diff --git a/PoweredSoft.DynamicLinq.Test/EntityFrameworkTests.cs b/PoweredSoft.DynamicLinq.Test/EntityFrameworkTests.cs index dad766a..0f4fffc 100644 --- a/PoweredSoft.DynamicLinq.Test/EntityFrameworkTests.cs +++ b/PoweredSoft.DynamicLinq.Test/EntityFrameworkTests.cs @@ -5,8 +5,8 @@ using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using PoweredSoft.DynamicLinq.Dal; using PoweredSoft.DynamicLinq.Dal.Pocos; -using PoweredSoft.DynamicLinq.EntityFramework.Extensions; -using PoweredSoft.DynamicLinq.Extensions; +using PoweredSoft.DynamicLinq.EntityFramework; +using PoweredSoft.DynamicLinq; namespace PoweredSoft.DynamicLinq.Test { diff --git a/PoweredSoft.DynamicLinq.Test/ShortcutTests.cs b/PoweredSoft.DynamicLinq.Test/ShortcutTests.cs index cfe3ee2..5ef4809 100644 --- a/PoweredSoft.DynamicLinq.Test/ShortcutTests.cs +++ b/PoweredSoft.DynamicLinq.Test/ShortcutTests.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; -using PoweredSoft.DynamicLinq.Extensions; +using PoweredSoft.DynamicLinq; using PoweredSoft.DynamicLinq.Test.Helpers; namespace PoweredSoft.DynamicLinq.Test diff --git a/PoweredSoft.DynamicLinq.Test/SimpleQueriesTest.cs b/PoweredSoft.DynamicLinq.Test/SimpleQueriesTest.cs index 2491f09..1ab7aeb 100644 --- a/PoweredSoft.DynamicLinq.Test/SimpleQueriesTest.cs +++ b/PoweredSoft.DynamicLinq.Test/SimpleQueriesTest.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Linq.Expressions; using Microsoft.VisualStudio.TestTools.UnitTesting; using PoweredSoft.DynamicLinq.Dal.Pocos; -using PoweredSoft.DynamicLinq.Extensions; +using PoweredSoft.DynamicLinq; namespace PoweredSoft.DynamicLinq.Test { diff --git a/PoweredSoft.DynamicLinq.Test/StringComparision.cs b/PoweredSoft.DynamicLinq.Test/StringComparision.cs index e29573b..e4e90ba 100644 --- a/PoweredSoft.DynamicLinq.Test/StringComparision.cs +++ b/PoweredSoft.DynamicLinq.Test/StringComparision.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; -using PoweredSoft.DynamicLinq.Extensions; +using PoweredSoft.DynamicLinq; using PoweredSoft.DynamicLinq.Test.Helpers; namespace PoweredSoft.DynamicLinq.Test diff --git a/PoweredSoft.DynamicLinq/Extensions/EnumerableExtensions.cs b/PoweredSoft.DynamicLinq/Extensions/EnumerableExtensions.cs index bdf64b8..695ecec 100644 --- a/PoweredSoft.DynamicLinq/Extensions/EnumerableExtensions.cs +++ b/PoweredSoft.DynamicLinq/Extensions/EnumerableExtensions.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -namespace PoweredSoft.DynamicLinq.Extensions +namespace PoweredSoft.DynamicLinq { public static class EnumerableExtensions { diff --git a/PoweredSoft.DynamicLinq/Extensions/QueryableExtensions.cs b/PoweredSoft.DynamicLinq/Extensions/QueryableExtensions.cs index d39307f..2ad2ec7 100644 --- a/PoweredSoft.DynamicLinq/Extensions/QueryableExtensions.cs +++ b/PoweredSoft.DynamicLinq/Extensions/QueryableExtensions.cs @@ -7,7 +7,7 @@ using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; -namespace PoweredSoft.DynamicLinq.Extensions +namespace PoweredSoft.DynamicLinq { public static class QueryableExtensions { diff --git a/PoweredSoft.DynamicLinq/PoweredSoft.DynamicLinq.csproj b/PoweredSoft.DynamicLinq/PoweredSoft.DynamicLinq.csproj index 28b6505..871e5c6 100644 --- a/PoweredSoft.DynamicLinq/PoweredSoft.DynamicLinq.csproj +++ b/PoweredSoft.DynamicLinq/PoweredSoft.DynamicLinq.csproj @@ -13,7 +13,7 @@ dynamic linq queryable 1.0.0.3 1.0.0.3 - 1.0.3 + 1.0.4 https://github.com/PoweredSoft/DynamicLinq