从' AspNetUsers'中删除2列后出错表

时间:2016-02-06 01:36:46

标签: c# asp.net asp.net-mvc asp.net-identity

在asp.net身份项目的初始创建迁移期间,我删除了列' PhoneNumber' &安培; ' PhoneNumberConfirmed'来自AspNetUsers表。现在,当我尝试注册新用户时,出现错误:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="org.witrackclub.wtc.SocialActivity"
tools:showIn="@layout/activity_social">

<TextView android:id="@id/android:empty"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal|center_vertical"
    android:text="No Tweets"/>

<ListView android:id="@id/android:list"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:divider="#e1e8ed"
    android:dividerHeight="1dp"
    android:drawSelectorOnTop="false"/>

</LinearLayout>

我猜我需要更新模型并删除&#34; PhoneNumber&#39;和&#39; PhoneNumberConfirmed&#39;字段,但我无法在解决方案中找到它们?

0 个答案:

没有答案