Skip to content

Commit

Permalink
Rename files; change namespaces and class names.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrainger committed May 27, 2020
1 parent 5aa46ed commit fa13702
Show file tree
Hide file tree
Showing 56 changed files with 253 additions and 253 deletions.
8 changes: 4 additions & 4 deletions RepoDb.MySqlConnector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
[![Home](https://img.shields.io/badge/home-github-important)](https://github.com/mikependon/RepoDb)
[![Website](https://img.shields.io/badge/website-information-yellow)](http://repodb.net)
[![GetStarted](https://img.shields.io/badge/tutorial-getstarted-blueviolet)](http://repodb.net/tutorial/get-started-mysql)
[![MySqlVersion](https://img.shields.io/nuget/v/RepoDb.MySql)](https://www.nuget.org/packages/RepoDb.MySql)
[![MySqlVersion](https://img.shields.io/nuget/v/RepoDb.MySqlConnector)](https://www.nuget.org/packages/RepoDb.MySqlConnector)
[![MySqlUnitTests](https://img.shields.io/appveyor/tests/mikependon/repodb-t2hy7?label=unit%20tests)](https://ci.appveyor.com/project/mikependon/repodb-t2hy7/build/tests)
[![MySqlIntegrationTests](https://img.shields.io/appveyor/tests/mikependon/repodb-o4t48?label=integration%20tests)](https://ci.appveyor.com/project/mikependon/repodb-o4t48/build/tests)

# RepoDb.MySql - a hybrid .NET ORM library for MySQL.
# RepoDb.MySqlConnector - a hybrid .NET ORM library for MySQL, using MySqlConnector

RepoDb is an open-source .NET ORM that bridge the gaps between micro-ORMs and full-ORMs. It helps the developer to simplify the switch-over of when to use the BASIC and ADVANCE operations during the development.

Expand Down Expand Up @@ -40,7 +40,7 @@ It is the best alternative ORM to both Dapper and EntityFramework.
At the Package Manager Console, write the command below.

```csharp
> Install-Package RepoDb.MySql
> Install-Package RepoDb.MySqlConnector
```

Or, visit our [installation](http://repodb.net/tutorial/installation) page for more information.
Expand All @@ -50,7 +50,7 @@ Or, visit our [installation](http://repodb.net/tutorial/installation) page for m
First, the bootstrapper must be initialized.

```csharp
RepoDb.MySqlBootstrap.Initialize();
RepoDb.MySqlConnectorBootstrap.Initialize();
```

**Note:** The call must be done once.
Expand Down
11 changes: 0 additions & 11 deletions RepoDb.MySqlConnector/RepoDb.MySql.IntegrationTests/appveyor.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;

namespace RepoDb.MySql.IntegrationTests
namespace RepoDb.MySqlConnector.IntegrationTests
{
[TestClass]
public class DbHelperTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
using MySql.Data.MySqlClient;
using RepoDb.Attributes;
using RepoDb.Extensions;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Collections.Generic;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests
namespace RepoDb.MySqlConnector.IntegrationTests
{
[TestClass]
public class EnumTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using RepoDb.Extensions;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using System.Text;

namespace RepoDb.MySql.IntegrationTests
namespace RepoDb.MySqlConnector.IntegrationTests
{
public static class Helper
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace RepoDb.MySql.IntegrationTests.Models
namespace RepoDb.MySqlConnector.IntegrationTests.Models
{
public class CompleteTable
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace RepoDb.MySql.IntegrationTests.Models
namespace RepoDb.MySqlConnector.IntegrationTests.Models
{
public class NonIdentityCompleteTable
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class AverageAllTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Enumerations;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class AverageTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Extensions;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class BatchQueryTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class CountAllTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Enumerations;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class CountTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class DeleteAllTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Enumerations;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class DeleteTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class ExecuteNonQueryTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Extensions;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System.Collections.Generic;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class ExecuteQueryMultipleTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Extensions;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class ExecuteQueryTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
using MySql.Data.MySqlClient;
using RepoDb.Extensions;
using RepoDb.Reflection;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System.Data.Common;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class ExecuteReaderTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class ExecuteScalarTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Enumerations;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class ExistsTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class InsertAllTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class InsertTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class MaxAllTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Enumerations;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class MaxTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.Extensions;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class MergeAllTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MySql.Data.MySqlClient;
using RepoDb.MySql.IntegrationTests.Models;
using RepoDb.MySql.IntegrationTests.Setup;
using RepoDb.MySqlConnector.IntegrationTests.Models;
using RepoDb.MySqlConnector.IntegrationTests.Setup;
using System;
using System.Linq;

namespace RepoDb.MySql.IntegrationTests.Operations
namespace RepoDb.MySqlConnector.IntegrationTests.Operations
{
[TestClass]
public class MergeTest
Expand Down
Loading

0 comments on commit fa13702

Please sign in to comment.