c# - Windows Azure 表中的 Like 语句等效项

标签 c# xaml azure microsoft-metro

我想知道 azure 表存储中是否有类似的语句。我使用这个语句来获取特定数据:

myTable.Where(userinfo => userinfo.Username == txtUsername.Text.ToLower());

有什么办法可以做到这样吗:

select * from tblUsers where username like 'D%'

最佳答案

myTable.Where(userinfo => userinfo.Username.StartsWith("D");

关于c# - Windows Azure 表中的 Like 语句等效项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22165525/

相关文章:

c# - 如何在运行时将已在 XAML ResourceDictionary 中定义的路径多次添加到 WPF 表单?

c# - 如何在 Windows Phone 的启动画面中为图像设置动画?

Azure功能应用程序powershell触发两次/三次

sql - 聚合 Azure SQL 数据仓库中的字符串

c# - 如何实现映射应用程序的alpha图标透明度

c# - 为什么 ShowInTaskbar 会毫无异常(exception)地使我的应用程序崩溃?

c# - Xamarin.Forms:IValueConverter 只工作一次

azure - 获取链接到 Azure AD 不记名 token 的用户名

java - 检查 Android 设备是否静音

c# - MVC 4 - 如何将模型数据传递给局部 View ?