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,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.Models
{
public class ViewModelStudent:Student
{
}
public class ViewModelStudent2
{
public string Name { get; set; }
public Student Student { get; set; }
}
}