update MySqlConnector 1.0.0

This commit is contained in:
28810
2020-07-19 07:22:48 +08:00
parent 7471df5924
commit 4a4647de1d
13 changed files with 41 additions and 30 deletions

View File

@ -1,5 +1,4 @@
using MySql.Data.MySqlClient;
using FreeSql.Internal.ObjectPool;
using FreeSql.Internal.ObjectPool;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
@ -7,6 +6,11 @@ using System.Data;
using System.Data.Common;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
#if MySqlConnector
using MySqlConnector;
#else
using MySql.Data.MySqlClient;
#endif
namespace FreeSql.MySql
{