mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
-
This commit is contained in:
parent
cf250356ea
commit
e309fade00
12
Src/Asp.NetCore2/SqlSeverTest/NugetTest/NugetTest.csproj
Normal file
12
Src/Asp.NetCore2/SqlSeverTest/NugetTest/NugetTest.csproj
Normal file
@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="sqlSugarCore" Version="4.5.9.9" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
21
Src/Asp.NetCore2/SqlSeverTest/NugetTest/Program.cs
Normal file
21
Src/Asp.NetCore2/SqlSeverTest/NugetTest/Program.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using SqlSugar;
|
||||
namespace NugetTest
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var db = new SqlSugarClient(new ConnectionConfig() {
|
||||
ConnectionString=Config.ConnectionString,
|
||||
IsAutoCloseConnection=true
|
||||
});
|
||||
var list = db.Ado.GetInt("select 1");
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
public class Config
|
||||
{
|
||||
public static string ConnectionString = "Database=SqlSugar4xTest;Data Source=127.0.0.1;User Id=root;Password=root;pooling=false;CharSet=utf8;port=3306";
|
||||
}
|
||||
}
|
||||
}
|
@ -11,7 +11,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MySqlTest", "MySqlTest\MySq
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqliteTest", "SqliteTest\SqliteTest.csproj", "{AE73F090-22EC-49E4-AFEE-879FFFA292EC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OracleTest", "OracleTest\OracleTest.csproj", "{3247B9CB-C92D-4AE3-8A35-3131AB2BD406}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OracleTest", "OracleTest\OracleTest.csproj", "{3247B9CB-C92D-4AE3-8A35-3131AB2BD406}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NugetTest", "NugetTest\NugetTest.csproj", "{E76C6F9B-BA90-4A5A-94D9-D3D48CBB6AA3}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@ -39,6 +41,10 @@ Global
|
||||
{3247B9CB-C92D-4AE3-8A35-3131AB2BD406}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3247B9CB-C92D-4AE3-8A35-3131AB2BD406}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3247B9CB-C92D-4AE3-8A35-3131AB2BD406}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{E76C6F9B-BA90-4A5A-94D9-D3D48CBB6AA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E76C6F9B-BA90-4A5A-94D9-D3D48CBB6AA3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E76C6F9B-BA90-4A5A-94D9-D3D48CBB6AA3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E76C6F9B-BA90-4A5A-94D9-D3D48CBB6AA3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
Loading…
Reference in New Issue
Block a user