From 37e28a0e4e464632870092a065b058ca0caf0d07 Mon Sep 17 00:00:00 2001 From: adebisi-fa-ibm Date: Mon, 4 Mar 2013 15:00:04 +0100 Subject: [PATCH] Replaces references to 'ServiceStack.Common.Extensions' namespace (which is now obsolete) with 'ServiceStack.Common' namespace. --- src/AllDialectsTest/Dialect.cs | 2 +- src/AllDialectsTest/Main.cs | 2 +- src/FirebirdTests/TestExpressions/Main.cs | 2 +- src/FirebirdTests/TestLiteFirebird00/Main.cs | 2 +- src/FirebirdTests/TestLiteFirebird04/Main.cs | 2 +- src/FirebirdTests/TestSimpleFirebird01/Main.cs | 2 +- src/FirebirdTests/TestSimpleFirebird02/Main.cs | 2 +- src/FirebirdTests/TestSimpleFirebird03/Main.cs | 2 +- src/MySqlExpressionsTest/Program.cs | 2 +- src/OracleTests/TestExpressions/Main.cs | 2 +- src/OracleTests/TestLiteOracle00/Main.cs | 2 +- src/OracleTests/TestLiteOracle04/Main.cs | 2 +- src/PostgreSQLExpressionsTest/Main.cs | 2 +- .../FirebirdOrmLiteDialectProvider.cs | 2 +- .../OrmLiteCreateTableWithIndexesTests.cs | 2 +- src/ServiceStack.OrmLite.MySql.Tests/OrmLiteGetScalarTests.cs | 2 +- src/ServiceStack.OrmLite.MySql.Tests/OrmLiteSelectTests.cs | 2 +- src/ServiceStack.OrmLite.Oracle/OracleOrmLiteDialectProvider.cs | 2 +- .../OrmLiteGetScalarTests.cs | 2 +- src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteSelectTests.cs | 2 +- src/ServiceStack.OrmLite/Expressions/WriteExtensions.cs | 2 +- src/ServiceStack.OrmLite/OrmLiteConfigExtensions.cs | 2 +- src/ServiceStack.OrmLite/OrmLiteDialectProviderBase.cs | 2 +- src/SqlServerExpressionsTets/Program.cs | 2 +- src/SqliteExpressionsTest/Program.cs | 2 +- .../OrmLiteCreateTableWithIndexesTests.cs | 2 +- .../ServiceStack.OrmLite.FirebirdTests/OrmLiteGetScalarTests.cs | 2 +- tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteSelectTests.cs | 2 +- .../ServiceStack.Common.Tests.Models/Movie.cs | 2 +- .../OrmLiteCreateTableWithIndexesTests.cs | 2 +- tests/ServiceStack.OrmLite.Tests/OrmLiteSelectTests.cs | 2 +- .../Scenarios/Northwind/SelectNorthwindDataScenario.cs | 2 +- .../OrmLite/InsertModelWithFieldsOfDifferentTypesScenario.cs | 2 +- .../Scenarios/OrmLite/InsertSampleOrderLineScenario.cs | 2 +- 34 files changed, 34 insertions(+), 34 deletions(-) diff --git a/src/AllDialectsTest/Dialect.cs b/src/AllDialectsTest/Dialect.cs index be1f993a4..8546d42fb 100644 --- a/src/AllDialectsTest/Dialect.cs +++ b/src/AllDialectsTest/Dialect.cs @@ -5,7 +5,7 @@ using System.Data; using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using System.IO; using ServiceStack.OrmLite; diff --git a/src/AllDialectsTest/Main.cs b/src/AllDialectsTest/Main.cs index d89bd15fc..10bcebd78 100644 --- a/src/AllDialectsTest/Main.cs +++ b/src/AllDialectsTest/Main.cs @@ -5,7 +5,7 @@ using System.Data; using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.OrmLite; namespace AllDialectsTest diff --git a/src/FirebirdTests/TestExpressions/Main.cs b/src/FirebirdTests/TestExpressions/Main.cs index 454b65b50..26044f494 100644 --- a/src/FirebirdTests/TestExpressions/Main.cs +++ b/src/FirebirdTests/TestExpressions/Main.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/src/FirebirdTests/TestLiteFirebird00/Main.cs b/src/FirebirdTests/TestLiteFirebird00/Main.cs index d1816c62f..c4a8b0721 100644 --- a/src/FirebirdTests/TestLiteFirebird00/Main.cs +++ b/src/FirebirdTests/TestLiteFirebird00/Main.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/src/FirebirdTests/TestLiteFirebird04/Main.cs b/src/FirebirdTests/TestLiteFirebird04/Main.cs index 5eb5a7f92..7ff96f057 100644 --- a/src/FirebirdTests/TestLiteFirebird04/Main.cs +++ b/src/FirebirdTests/TestLiteFirebird04/Main.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.OrmLite; using ServiceStack.OrmLite.Firebird; diff --git a/src/FirebirdTests/TestSimpleFirebird01/Main.cs b/src/FirebirdTests/TestSimpleFirebird01/Main.cs index 59dc4390c..0c73575a1 100644 --- a/src/FirebirdTests/TestSimpleFirebird01/Main.cs +++ b/src/FirebirdTests/TestSimpleFirebird01/Main.cs @@ -5,7 +5,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/src/FirebirdTests/TestSimpleFirebird02/Main.cs b/src/FirebirdTests/TestSimpleFirebird02/Main.cs index bb35b7747..677c8c4d4 100644 --- a/src/FirebirdTests/TestSimpleFirebird02/Main.cs +++ b/src/FirebirdTests/TestSimpleFirebird02/Main.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.DesignPatterns.Model; using ServiceStack.OrmLite; diff --git a/src/FirebirdTests/TestSimpleFirebird03/Main.cs b/src/FirebirdTests/TestSimpleFirebird03/Main.cs index 42b3a9849..015ecb472 100644 --- a/src/FirebirdTests/TestSimpleFirebird03/Main.cs +++ b/src/FirebirdTests/TestSimpleFirebird03/Main.cs @@ -5,7 +5,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.OrmLite; using ServiceStack.OrmLite.Firebird; diff --git a/src/MySqlExpressionsTest/Program.cs b/src/MySqlExpressionsTest/Program.cs index df9fca6dc..186de1154 100644 --- a/src/MySqlExpressionsTest/Program.cs +++ b/src/MySqlExpressionsTest/Program.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/src/OracleTests/TestExpressions/Main.cs b/src/OracleTests/TestExpressions/Main.cs index 4e114f03a..2e4be4611 100644 --- a/src/OracleTests/TestExpressions/Main.cs +++ b/src/OracleTests/TestExpressions/Main.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/src/OracleTests/TestLiteOracle00/Main.cs b/src/OracleTests/TestLiteOracle00/Main.cs index cd7c1a596..59b0ff859 100644 --- a/src/OracleTests/TestLiteOracle00/Main.cs +++ b/src/OracleTests/TestLiteOracle00/Main.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/src/OracleTests/TestLiteOracle04/Main.cs b/src/OracleTests/TestLiteOracle04/Main.cs index e22733631..d56c92068 100644 --- a/src/OracleTests/TestLiteOracle04/Main.cs +++ b/src/OracleTests/TestLiteOracle04/Main.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.OrmLite; using ServiceStack.OrmLite.Oracle; diff --git a/src/PostgreSQLExpressionsTest/Main.cs b/src/PostgreSQLExpressionsTest/Main.cs index 5471f309d..e51b86052 100644 --- a/src/PostgreSQLExpressionsTest/Main.cs +++ b/src/PostgreSQLExpressionsTest/Main.cs @@ -6,7 +6,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/src/ServiceStack.OrmLite.Firebird/FirebirdOrmLiteDialectProvider.cs b/src/ServiceStack.OrmLite.Firebird/FirebirdOrmLiteDialectProvider.cs index 8898bfe67..775f91fd4 100644 --- a/src/ServiceStack.OrmLite.Firebird/FirebirdOrmLiteDialectProvider.cs +++ b/src/ServiceStack.OrmLite.Firebird/FirebirdOrmLiteDialectProvider.cs @@ -5,7 +5,7 @@ using ServiceStack.Common.Utils; using System.Text; using FirebirdSql.Data.FirebirdClient; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; namespace ServiceStack.OrmLite.Firebird { diff --git a/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteCreateTableWithIndexesTests.cs b/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteCreateTableWithIndexesTests.cs index 883a45af6..6bda08418 100644 --- a/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteCreateTableWithIndexesTests.cs +++ b/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteCreateTableWithIndexesTests.cs @@ -1,5 +1,5 @@ using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; namespace ServiceStack.OrmLite.MySql.Tests diff --git a/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteGetScalarTests.cs b/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteGetScalarTests.cs index 190adcd20..6e45e9ffa 100644 --- a/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteGetScalarTests.cs +++ b/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteGetScalarTests.cs @@ -2,7 +2,7 @@ using System.Linq; using System.Collections.Generic; using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; using ServiceStack.Text; using ServiceStack.DataAnnotations; diff --git a/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteSelectTests.cs b/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteSelectTests.cs index fc7b944a3..153a9bac4 100644 --- a/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteSelectTests.cs +++ b/src/ServiceStack.OrmLite.MySql.Tests/OrmLiteSelectTests.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; namespace ServiceStack.OrmLite.MySql.Tests diff --git a/src/ServiceStack.OrmLite.Oracle/OracleOrmLiteDialectProvider.cs b/src/ServiceStack.OrmLite.Oracle/OracleOrmLiteDialectProvider.cs index 8ce0d4f13..f45d561bc 100644 --- a/src/ServiceStack.OrmLite.Oracle/OracleOrmLiteDialectProvider.cs +++ b/src/ServiceStack.OrmLite.Oracle/OracleOrmLiteDialectProvider.cs @@ -4,7 +4,7 @@ using System.Reflection; using ServiceStack.Common.Utils; using System.Text; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.OrmLite; using System.Data.OracleClient; diff --git a/src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteGetScalarTests.cs b/src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteGetScalarTests.cs index faa0bc192..c8616ec73 100644 --- a/src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteGetScalarTests.cs +++ b/src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteGetScalarTests.cs @@ -2,7 +2,7 @@ using System.Linq; using System.Collections.Generic; using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; using ServiceStack.Text; using ServiceStack.DataAnnotations; diff --git a/src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteSelectTests.cs b/src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteSelectTests.cs index aaccba698..302f1c856 100644 --- a/src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteSelectTests.cs +++ b/src/ServiceStack.OrmLite.PostgreSQL.Tests/OrmLiteSelectTests.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; using ServiceStack.Text; diff --git a/src/ServiceStack.OrmLite/Expressions/WriteExtensions.cs b/src/ServiceStack.OrmLite/Expressions/WriteExtensions.cs index d1ed35a09..a92b35b95 100644 --- a/src/ServiceStack.OrmLite/Expressions/WriteExtensions.cs +++ b/src/ServiceStack.OrmLite/Expressions/WriteExtensions.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Linq.Expressions; using System.Text; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Text; namespace ServiceStack.OrmLite diff --git a/src/ServiceStack.OrmLite/OrmLiteConfigExtensions.cs b/src/ServiceStack.OrmLite/OrmLiteConfigExtensions.cs index faef06474..18bf60cfc 100644 --- a/src/ServiceStack.OrmLite/OrmLiteConfigExtensions.cs +++ b/src/ServiceStack.OrmLite/OrmLiteConfigExtensions.cs @@ -15,7 +15,7 @@ using System.Linq; using System.Reflection; using System.Threading; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.DataAnnotations; using ServiceStack.Text; diff --git a/src/ServiceStack.OrmLite/OrmLiteDialectProviderBase.cs b/src/ServiceStack.OrmLite/OrmLiteDialectProviderBase.cs index 73b72e208..3f70270d1 100644 --- a/src/ServiceStack.OrmLite/OrmLiteDialectProviderBase.cs +++ b/src/ServiceStack.OrmLite/OrmLiteDialectProviderBase.cs @@ -17,7 +17,7 @@ using ServiceStack.Logging; using ServiceStack.Text; using System.Diagnostics; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.IO; namespace ServiceStack.OrmLite diff --git a/src/SqlServerExpressionsTets/Program.cs b/src/SqlServerExpressionsTets/Program.cs index 3e8222513..f91ecff2c 100644 --- a/src/SqlServerExpressionsTets/Program.cs +++ b/src/SqlServerExpressionsTets/Program.cs @@ -7,7 +7,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/src/SqliteExpressionsTest/Program.cs b/src/SqliteExpressionsTest/Program.cs index e1009346e..5d65ebf95 100644 --- a/src/SqliteExpressionsTest/Program.cs +++ b/src/SqliteExpressionsTest/Program.cs @@ -7,7 +7,7 @@ using ServiceStack.Common.Utils; using ServiceStack.DataAnnotations; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using System.Reflection; using ServiceStack.OrmLite; diff --git a/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteCreateTableWithIndexesTests.cs b/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteCreateTableWithIndexesTests.cs index b598901de..76887adf6 100644 --- a/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteCreateTableWithIndexesTests.cs +++ b/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteCreateTableWithIndexesTests.cs @@ -1,6 +1,6 @@ using System; using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; namespace ServiceStack.OrmLite.FirebirdTests diff --git a/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteGetScalarTests.cs b/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteGetScalarTests.cs index d97865d53..b8f6f6c2b 100644 --- a/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteGetScalarTests.cs +++ b/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteGetScalarTests.cs @@ -2,7 +2,7 @@ using System.Linq; using System.Collections.Generic; using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; using ServiceStack.Text; using ServiceStack.DataAnnotations; diff --git a/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteSelectTests.cs b/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteSelectTests.cs index 80a298e55..fa2944591 100644 --- a/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteSelectTests.cs +++ b/tests/ServiceStack.OrmLite.FirebirdTests/OrmLiteSelectTests.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; using ServiceStack.Text; using ServiceStack.DataAnnotations; diff --git a/tests/ServiceStack.OrmLite.FirebirdTests/ServiceStack.Common.Tests/ServiceStack.Common.Tests.Models/Movie.cs b/tests/ServiceStack.OrmLite.FirebirdTests/ServiceStack.Common.Tests/ServiceStack.Common.Tests.Models/Movie.cs index 55677755a..4bd1298ef 100755 --- a/tests/ServiceStack.OrmLite.FirebirdTests/ServiceStack.Common.Tests/ServiceStack.Common.Tests.Models/Movie.cs +++ b/tests/ServiceStack.OrmLite.FirebirdTests/ServiceStack.Common.Tests/ServiceStack.Common.Tests.Models/Movie.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; using System.Collections.Generic; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; namespace ServiceStack.Common.Tests.Models{ diff --git a/tests/ServiceStack.OrmLite.Tests/OrmLiteCreateTableWithIndexesTests.cs b/tests/ServiceStack.OrmLite.Tests/OrmLiteCreateTableWithIndexesTests.cs index db6b2ba83..28f3f0fd6 100644 --- a/tests/ServiceStack.OrmLite.Tests/OrmLiteCreateTableWithIndexesTests.cs +++ b/tests/ServiceStack.OrmLite.Tests/OrmLiteCreateTableWithIndexesTests.cs @@ -1,5 +1,5 @@ using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; namespace ServiceStack.OrmLite.Tests diff --git a/tests/ServiceStack.OrmLite.Tests/OrmLiteSelectTests.cs b/tests/ServiceStack.OrmLite.Tests/OrmLiteSelectTests.cs index e83471c02..784e8bcd9 100644 --- a/tests/ServiceStack.OrmLite.Tests/OrmLiteSelectTests.cs +++ b/tests/ServiceStack.OrmLite.Tests/OrmLiteSelectTests.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using NUnit.Framework; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.Common.Tests.Models; using ServiceStack.Text; diff --git a/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/Northwind/SelectNorthwindDataScenario.cs b/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/Northwind/SelectNorthwindDataScenario.cs index d37c705a6..d1ba1f178 100644 --- a/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/Northwind/SelectNorthwindDataScenario.cs +++ b/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/Northwind/SelectNorthwindDataScenario.cs @@ -3,7 +3,7 @@ using System.Data; using Northwind.Common.DataModel; using Northwind.Perf; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; namespace ServiceStack.OrmLite.TestsPerf.Scenarios.Northwind { diff --git a/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/OrmLite/InsertModelWithFieldsOfDifferentTypesScenario.cs b/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/OrmLite/InsertModelWithFieldsOfDifferentTypesScenario.cs index f790a4ff0..30b8f77fd 100644 --- a/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/OrmLite/InsertModelWithFieldsOfDifferentTypesScenario.cs +++ b/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/OrmLite/InsertModelWithFieldsOfDifferentTypesScenario.cs @@ -1,6 +1,6 @@ using System.Data; using Northwind.Perf; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.OrmLite.TestsPerf.Model; namespace ServiceStack.OrmLite.TestsPerf.Scenarios.OrmLite diff --git a/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/OrmLite/InsertSampleOrderLineScenario.cs b/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/OrmLite/InsertSampleOrderLineScenario.cs index d5a005d94..26d5e107c 100644 --- a/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/OrmLite/InsertSampleOrderLineScenario.cs +++ b/tests/ServiceStack.OrmLite.TestsPerf/Scenarios/OrmLite/InsertSampleOrderLineScenario.cs @@ -1,7 +1,7 @@ using System; using System.Data; using Northwind.Perf; -using ServiceStack.Common.Extensions; +using ServiceStack.Common; using ServiceStack.OrmLite.TestsPerf.Model; namespace ServiceStack.OrmLite.TestsPerf.Scenarios.OrmLite