查询表面模板?
我几个小时以来一直想知道如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.