实体 SQL 连接

发布于 2024-10-28 19:37:16 字数 189 浏览 0 评论 0原文

我在 Entity SQL 中有一个返回简单字符串的选择,我应该连接到一个字符串。

select (p.X + p.Y) from ExampleEntities.ExampleTable as p
group by p.X, p.Y

例如,它返回 3 个字符串,我应该将其连接到 1 个字符串。

I have a select in Entity SQL that returns simple strings, and I should concatenate to a string.

select (p.X + p.Y) from ExampleEntities.ExampleTable as p
group by p.X, p.Y

For example it returns 3 string and I should concatenate it to 1 string.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谁的新欢旧爱 2024-11-04 19:37:16

我不确定您是否想要连接所有行或每行,但这是每行解决方案:

from p in ExampleEntities.ExampleTable
select string.Concat(p.X, p.Y, p.Z)

如果您想要单个结果,您将需要以下内容:

var temp = (from p in ExampleEntities.ExampleTable
            select string.Concat(p.X, p.Y, p.Z)).ToList();

string result = temp.Aggregate((current, next) => current + next);

I'm not sure if you want to concatenate all rows or per row, but this is a per row solution:

from p in ExampleEntities.ExampleTable
select string.Concat(p.X, p.Y, p.Z)

If you want a single result you'll need the following:

var temp = (from p in ExampleEntities.ExampleTable
            select string.Concat(p.X, p.Y, p.Z)).ToList();

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