0

如何连接到会员数据库以检索用户帐户列表?例如,我有这个连接到我的个人资料:

    Private db As UserProfileDbContext = New UserProfileDbContext

    '
    ' GET: /UserProfile/

    Function Index() As ViewResult
        Return View(db.UserProfiles.ToList())
    End Function

帐户模型中似乎没有指定任何用户帐户数据库上下文。我应该创建一个,还是有更好的方法将所有用户帐户检索到上面的列表中?

编辑:

我在控制器中有这段代码:

'
' GET: /Account/ViewRegistries

Function ViewRegistries() As ViewResult
    Return View(Membership.GetAllUsers().Cast(Of MembershipUser).ToList)
End Function

我的观点:

@ModelType IEnumerable(Of MyBlog.RegisterModel)

@Code
    ViewData("Title") = "Index"
End Code

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table>
    <tr>
        <th>
            UserId
        </th>
        <th>
            CompanyId
        </th>
        <th></th>
    </tr>

@For Each item In Model
    Dim currentItem = item
    @<tr>
        <td>
            @Html.DisplayFor(Function(modelItem) currentItem.UserName)
        </td>
        <td>
            @Html.DisplayFor(Function(modelItem) currentItem.Company)
        </td>
    </tr>
Next

</table>

但它会产生一个错误:

传入字典的模型项的类型为“System.Collections.Generic.List 1[System.Web.Security.MembershipUser]', but this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable1[MyBlog.RegisterModel]”。

我该如何解决?

4

1 回答 1

2

您可以使用会员提供者:

Membership.GetAllUsers()

注册用户后,这将返回数据库中所有用户的列表。

于 2012-08-08T15:44:06.033 回答