我将开发一个系统,用户可以在ASP.NET MVC中互相跟随。我该怎么做呢?
我以前从没玩过多对多的游戏
namespace EntityLayer.Concrete
{
public partial class Follow
{
[Key]
public int FollowID { get;set;}
public int UserOneID { get;set;}
public int UserTwoID { get;set;}
public bool IsFollowing { get;set;}
public virtual Author Author { get; set; }
public virtual Author user { get; set; }
public virtual Author user2 { get; set; }
}
}
1条答案
按热度按时间vc9ivgsu1#
你不需要那么多字段,这些应该足够了