一天學會MVC3之資料訪問

2021-06-03 10:34:00 字數 1685 閱讀 9863

新增乙個artist類:

using system;

using system.collections.generic;

using system.linq;

using system.web;

namespace mvcmusicstore.models

public string name }}

更新album類:

using system;

using system.collections.generic;

using system.linq;

using system.web;

namespace mvcmusicstore.models

public int genreid

public int artistid

public string title

public decimal price

public string albumarturl

public genre genre

public artist artist }}

更新genre類:

public partial class genre

public string name

public string description

public listalbumssss

}

下面在根web.config 裡新增連線字串:
然後在模型層裡新增musicstoreentities類繼承自資料庫context類:

using system;

using system.collections.generic;

using system.linq;

using system.web;

using system.data.entity;

namespace mvcmusicstore.models

public dbsetgenres }}

然後在模型層裡新增sampledata.cs類:

在global.asax的應用程式啟動方法裡載入種子資料

然後在修改storecontroller中的index方法:

public class storecontroller : controller

}

執行/store看看現在的執行效果

下面修改browse方法:

public actionresult browse(string genre)

browse.cshtml檔案**如下:

@model mvcmusicstore.models.genre 

@

details詳細方法**:

public actionresult details(int id)

瀏覽方式/store/details/1

資料庫關係圖對映如下:

十天學會PHP之第一天

以前寫了十天學會asp,十天學會asp.net什麼的,現在想想再寫個php吧,也算比較全了。php的除錯方法我這裡就不說了,外面很多文章都有介紹,也有很多不同的組合。我這裡暫時是以 apache web server 和 my sql 作為web伺服器和資料庫,在php 4.3.3下的環境做的程式。...

十天學會ASP之第一天

學習目的 安裝除錯 asp的環境,寫出第乙個 hello world 程式。首先我們來安裝 winsows2000 自帶的iis 作為伺服器。winsows98 的pws 也可以,但是不推薦,安裝大致和 2000 相同,這裡就不詳細說了。此主題相關如下 大家不要頭痛,裡面只有三個頁面需要修改,先是 ...

十天學會php之第一天

以前寫了十天學會asp,十天學會asp.net什麼的,現在想想再寫個php吧,也算比較全了。php的除錯方法我這裡就不說了,外面很多文章都有介紹,也有很多不同的組合。我這裡暫時是以 apache web server 和 my sql 作為web伺服器和資料庫,在php 4.3.3下的環境做的程式。...