如何在SQLite中获取所选记录的ID

时间:2019-04-02 09:39:56

标签: c# android-sqlite

我有使用Sqlite从应用程序表中显示的记录列表。

这是列表视图的代码。

            <ListView x:Name="registerlist" HasUnevenRows="True">
            <ListView.ItemTemplate>
                <DataTemplate>
                    <TextCell Text="{Binding name}" Tapped="TextCell_Tapped"
                      Detail="{Binding email}">
                    </TextCell>

                </DataTemplate>
            </ListView.ItemTemplate>

        </ListView>

如您所见,我具有“已点击”属性。

我想做的就是点击时-更新此记录。

在这里,我开始更新记录。

  public static void TextCell_Tapped(object sender, EventArgs e)
    {
        using (SQLite.SQLiteConnection conn = new SQLite.SQLiteConnection(App.DB_PATH))
        {

           //capture the record ID
           var recID = 



        }
    }

我要做的第一件事是保存“已轻击”记录的变量ID。 因此,当用户点击记录时-我如何显示“提醒”该特定已点击记录的ID。

0 个答案:

没有答案