ASP.NETCore - 朋友系统

时间:2016-11-10 10:42:10

标签: mysql asp.net linq system social-network-friendship

我正在构建一个应用程序,我尝试建立一个朋友系统。

现在,我使用2个表格。 1st:默认AspNetUsers我存储用户信息。

第二名:朋友表如下:

    public class AspNetFriends
{
    public int ID { get; set; }
    public string friendFrom { get; set; }
    public string friendTo { get; set; }
    public bool isConfirmed { get; set; }
}

在此表中," friendFrom"和朋友去"是字符串类型,并接收注册用户ID。

我想要实现的是当我在我的视图上显示此表时,我想在" friendFrom"中显示相同UserID的用户名。或者" friendTo"柱。

1 个答案:

答案 0 :(得分:1)

您需要按照以下方式更改课程(我没有对此进行测试):

asp.net核心的默认应用程序用户

using Microsoft.AspNetCore.Identity.EntityFrameworkCore;

namespace project.Models
{
    // Add profile data for application users by adding properties to the ApplicationUser class
    public class ApplicationUser : IdentityUser
    {

    }
}

<强>模型

public class AspNetFriends
{
    public int ID { get; set; }
    public bool isConfirmed { get; set; }
    public virtual ApplicationUser friendFrom { get; set; }
    public virtual ApplicationUser friendTo { get; set; }
}

现在您可以访问aspnet用户的getter和setter

<强>控制器

public async Task<IActionResult> Details(int id)
{
    var query = from m in _dbContext.AspNetFriends
                    join ff in _dbContext.Users on
                        new { m.friendFrom.Id } equals new { Id = cu.Id }
                    join ft in _dbContext.Users on
                        new { m.friendTo.Id } equals new { Id = cu.Id }
                        where m.ID == id
                        select m;

    return View(query.Single());
 }

查看

@model project.AspNetFriends

<p>
@model.friendFrom.UserName
</P>

@ item.CreationUser.UserName