返回列表<字符串>分组后

发布于 2024-09-08 05:59:29 字数 243 浏览 4 评论 0原文

我有一个函数

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫卆 2024-09-15 05:59:29

看起来您只想要一组不同的用户名...为​​什么不直接使用:

return _dataContext.PageStat.Select(u => u.UserName)
                            .Distinct()
                            .ToList();

如果您真的想使用分组,您可以这样做:

var q = from i in _dataContext.PageStat
        group i by i.UserName into ii
        select ii.Key;
return q.ToList();

您不需要所有这些匿名类型:)

It looks like you just want the distinct set of usernames... why not just use:

return _dataContext.PageStat.Select(u => u.UserName)
                            .Distinct()
                            .ToList();

If you really want to use grouping, you could do:

var q = from i in _dataContext.PageStat
        group i by i.UserName into ii
        select ii.Key;
return q.ToList();

You don't need all those anonymous types :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文