返回列表<字符串>分组后字符串>
我有一个函数
public List<string> UserList()
{
var q = from i in _dataContext.PageStat group i by new { i.UserName } into ii select new { ii.Key.UserName };
}
如何返回 List
?
I have a function
public List<string> UserList()
{
var q = from i in _dataContext.PageStat group i by new { i.UserName } into ii select new { ii.Key.UserName };
}
How can I return List<string>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您只想要一组不同的用户名...为什么不直接使用:
如果您真的想使用分组,您可以这样做:
您不需要所有这些匿名类型:)
It looks like you just want the distinct set of usernames... why not just use:
If you really want to use grouping, you could do:
You don't need all those anonymous types :)