Update Sqlite

This commit is contained in:
sunkaixuan
2017-07-09 00:34:56 +08:00
parent 2636fa3a1e
commit a50972b8db
40 changed files with 3179 additions and 43 deletions

View File

@@ -0,0 +1,17 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.Models
{
public class School
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
public string Name { get; set; }
}
}