1
我正在MVC項目中創建一個項目,並且我添加了一個Artist
類,但它在Album
類中顯示錯誤,我在其中添加Artist
作爲返回類型:'MyMusicStore'是一個屬性,但用作mvc中的一個類型
'MyMusicStore' 是 '屬性',但用作MVC類型
Artist
代碼是
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MyMusicStore.Models;
namespace MvcMusicStore.Models
{
public class Artist
{
public int ArtistId { get; set; }
public string Name { get; set; }
}
}
這是Album
類錯誤所在的最後一條語句出現:
namespace MyMusicStore.Models
{
public class Album
{
public int AlbumId { get; set; }
public int GenreId { get; set; }
public int ArtistId { get; set; }
public string Title { get; set; }
public decimal Price { get; set; }
public string AlbumArtUrl { get; set; }
public Genre Genre { get; set; }
public Artist Artist { get; set; }
}
}
好點 - 我盯着看不到差異! – garfbradaz
@rahul謝謝 –