答案 0 :(得分:4)
Unity有一个内置函数:Vector3.Project
public class EfDbcontext : DbContext
{
public EfDbcontext()
: base("name=DefaultConnection")
{
}
public DbSet<Support> Supports { get; set; }
public DbSet<FileDetail> FileDetails { get; set; }
}