SqlSugar源码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.3 KiB

6 years ago
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OrmTest
{
public class DemoE_CodeFirst
{
public static void Init()
{
Console.WriteLine("");
Console.WriteLine("#### CodeFirst Start ####");
SqlSugarClient db = new SqlSugarClient(new ConnectionConfig()
{
6 years ago
DbType = DbType.Oracle,
6 years ago
ConnectionString = Config.ConnectionString3,
InitKeyType = InitKeyType.Attribute,
IsAutoCloseConnection = true
});
db.CodeFirst.InitTables(typeof(CodeFirstTable1));//Create CodeFirstTable1
db.Insertable(new CodeFirstTable1() { Name = "a", Text="a" }).ExecuteCommand();
var list = db.Queryable<CodeFirstTable1>().ToList();
2 years ago
db.CodeFirst.InitTables<PictureData>();
db.CodeFirst.InitTables<PictureData>();
2 years ago
db.CodeFirst.InitTables<EnumTypeClass>();
db.Insertable(new EnumTypeClass() { enumType= EnumType.x1, SerialNo= Guid.NewGuid() + "" }).ExecuteCommand();
var list2=db.Queryable<EnumTypeClass>().Select(x => new EnumTypeClass()
{
enumType = x.enumType ,
SerialNo = x.SerialNo
}).ToList();
6 years ago
Console.WriteLine("#### CodeFirst end ####");
}
}
2 years ago
public class EnumTypeClass
{
[SugarColumn(IsPrimaryKey = true,Length =50)]
public string SerialNo { get; set; }
[SugarColumn(ColumnDataType ="number(22,0)")]
public EnumType enumType { get; set; }
}
public enum EnumType {
x1=-1,
x2=2
}
2 years ago
[SugarTable("PictureData")]
public class PictureData
{
[SugarColumn(IsPrimaryKey = true)]
public string SampleNo { get; set; }
6 years ago
2 years ago
[SugarColumn(IsPrimaryKey = true)]
public int SerialNo { get; set; }
public byte[] Data { get; set; }
}
6 years ago
public class CodeFirstTable1
{
6 years ago
[SugarColumn(OracleSequenceName ="SEQ_ID", IsPrimaryKey = true)]
6 years ago
public int Id { get; set; }
public string Name { get; set; }
public string Text { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime CreateTime { get; set; }
}
}