猿问

在Xamarin中将sqlite数据库值添加到标签

我正在尝试制作Xamarin应用程序并将sqlite数据库值添加到标签,但是它只显示我应用程序的名称+“ .Table”。-> MyApp.Table


方法:


public async Task<string> GetSAsync(int id)

    {    

        var s= await database.QueryAsync<Table>("SELECT Sign FROM Table WHERE ID = ?",id);

        return string.Join(Environment.NewLine, s);

    }

我调用方法的内容页面


protected async override void OnAppearing()

    {

        base.OnAppearing();


        lbl.Text = await App.Database.GetSAsync(5);

    }


aluckdog
浏览 156回答 1
1回答
随时随地看视频慕课网APP
我要回答