gpt4 book ai didi

c# - Windows Azure 从特定列获取项目

转载 作者:行者123 更新时间:2023-12-03 06:04:04 25 4
gpt4 key购买 nike

我正在使用 Windows Azure 移动服务(c# Win RT 应用程序)。表“Game”由“PlayerName”、“PlayerMail”和“PlayerAge”列组成。

例如:第一行:蒂姆 [email protected] 21 | 21第二行:一月 [email protected] 23

在后面的代码中,我询问 PlayerName 等于文本框中填写的名称的所有行。只有 1 行 PlayerName 是 Tim。我想获取那个人的 PlayerMail 并将其放入变量中。我怎样才能做到这一点?

private IMobileServiceTable<Game> todoTable = App.MobileService.GetTable<Game>();

var player = Player.Text
var databynaam = await todoTable.Where(todoItem => todoItem.PlayerName == player).ToCollectionAsync();

最佳答案

您可以使用选择操作来仅选择该字段:

IMobileServiceTable<Game> todoTable = App.MobileService.GetTable<Game>();
string player = Player.Text;
IEnumerable<string> emails = await todoTable
.Where(game => game.PlayerName == player)
.Select(game => game.PlayerMail)
.ToEnumerableAsync();
string playerMail = emails.FirstOrDefault();

关于c# - Windows Azure 从特定列获取项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16873763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com