如何用写好的指定DataContextClass进行分组?

发布于 2024-10-30 09:52:03 字数 553 浏览 1 评论 0原文

我想按categoryid对dvdlist进行分组,与此类似,但没有DVDDataContext 这个有效,

DvdDataContext db = new DvdDataContext();
var q = from b in db.DvdLists
        group b by b.CategoryId into g
        select new { CategoryID = g.Key, DvdLists = g };

我需要以下类型的代码,但错误发生在 GetTable()=g

DataContext db = new DataContext(conString);
var dvd = db.GetTable<DvdList>();
var query = from b in dvd
            group b by b.CategoryId into g
            select new { CategoryId = g.Key, GetTable<DvdList>()= g }; 

I want to group dvdlist by categoryid, Similar to this, but no DVDDataContext
This one works,

DvdDataContext db = new DvdDataContext();
var q = from b in db.DvdLists
        group b by b.CategoryId into g
        select new { CategoryID = g.Key, DvdLists = g };

I need the following kind of code, but the error occurs at GetTable()=g

DataContext db = new DataContext(conString);
var dvd = db.GetTable<DvdList>();
var query = from b in dvd
            group b by b.CategoryId into g
            select new { CategoryId = g.Key, GetTable<DvdList>()= g }; 

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

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

发布评论

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

评论(1

我还不会笑 2024-11-06 09:52:03

您不能在匿名类型中指定 GetTable()。尝试 { CategoryId = g.Key, GetTable= g };

希望有帮助!

You cannot specify GetTable() in anonymous types. Try { CategoryId = g.Key, GetTable= g };

Hope it helps!

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