查询表面模板?

发布于 2024-07-27 00:51:20 字数 456 浏览 3 评论 0原文

我几个小时以来一直想知道如何将 QuerySurface 集成到我的项目中。

我使用 SubSonic 3.0 ActiveRecord T4 模板取得了巨大成功,

因为我一直在使用 LINQ 进行查询,所以我还需要更新、插入和删除功能,根据文档,这些功能使用 QuerySurface。 http://subsonicproject.com/docs/Linq_Deletes

所以我通过 github 跑到源代码导航没有找到 QuerySurface 的任何 T4 模板。

有人遇到这个问题还是我错过了什么?

重新表述我的问题,如何使用 LINQ 在 SubSonic 3.0 中更新、插入和删除?

谢谢。

i've been wondering for few hours now how can i get the QuerySurface integrated in my project.

I am using the SubSonic 3.0 ActiveRecord T4 templates with great success,

As i have been doing query with LINQ, i need also the Update, Insert and Delete functionality which according to the documentation utilize QuerySurface.
http://subsonicproject.com/docs/Linq_Deletes

So i ran to the source code navigate through the github didn't find any T4 template for QuerySurface.

Is anyone having this problem or am i missing something?

to rephrase my question, how can i Update, Insert and Delete in SubSonic 3.0 with LINQ?

Thanks.

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

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

发布评论

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

评论(1

萌梦深 2024-08-03 00:51:20

CRUD 的工作是通过 ActiveRecord 自动完成的。 因此,如果您创建一个对象,那么“Save()”它(或更新/添加)它将为您完成工作。 Delete 是类型上的静态方法:Product.Delete(x=>x.ProductID==1)、Product.Delete(1) 等。Context.tt

模板是 QuerySurface 的东西 - 所以你已经拥有它了。

The CRUD stuff is done with ActiveRecord automatically. So if you create an object, then "Save()" it (or Update/Add) it will do the work for you. Delete is a static method on the type: Product.Delete(x=>x.ProductID==1), Product.Delete(1), etc.

The Context.tt template is the QuerySurface stuff - so you already have it.

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