Tool:Visual Studio 2013 Ultimate Update 2
OS:Windows 8.1
IIS : IIS 8
.NET Framework : 4.5.5
Web Form專案支援Scaffolding的功能了
- 目前只限Project類型專案可用,Web Site類型不支援
- Step-by – step :
- 在ASP.NET專案中,在Models資料夾加入類別檔案,定義Model如下:
public class Employee {
public int EmployeeID { get; set; }
public string EmployeeName { get; set; }
public int Age { get; set; }
}
- 加入MyDbContext 類別
public class MyDbContext : DbContext {
public DbSet<Employee> Employees { get; set; }
}
public DbSet<Employee> Employees { get; set; }
}
- Build Solution
- Add Scaffikded Item
- 工具會產生範本檔案,放在Employee資料夾
- RUN,新增資料
- 執行結果
沒有留言:
張貼留言