EntityFramework代码首先,是否可以映射这个

发布于 2024-11-04 01:57:29 字数 362 浏览 0 评论 0原文

是否有可能将其映射到一个实体?

select x,y,z, (select count(*) from othertable where tableid=table.id) as othertablecount
from table t

我想将其映射到一个如下所示的类:

public class Stuff
{
    public string x { get; set; }
    public string y { get; set; }
    public string z { get; set; }
    public int count { get; set; }
}

is there even a possibility to map this to one entity ?

select x,y,z, (select count(*) from othertable where tableid=table.id) as othertablecount
from table t

i want to map this to a class that looks like this:

public class Stuff
{
    public string x { get; set; }
    public string y { get; set; }
    public string z { get; set; }
    public int count { get; set; }
}

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

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

发布评论

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

评论(1

半葬歌 2024-11-11 01:57:29

不,您应该将其正确映射为集合并使用投影进行查询:

class Stuff
{
   ...
   public virtual ICollection<OtherStuff> { get; set; }
}

var stuffWithCount = from stuff in myContext.Stuff
                     select new
                            {
                                stuff.x, ...
                                count = stuff.OtherStuff.Count()
                            };

No. You should map it properly as a collection and use a projection for querying:

class Stuff
{
   ...
   public virtual ICollection<OtherStuff> { get; set; }
}

var stuffWithCount = from stuff in myContext.Stuff
                     select new
                            {
                                stuff.x, ...
                                count = stuff.OtherStuff.Count()
                            };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文