亚音速单个 WHERE 子句
是否可以在 SubSonic 查询上应用 WHERE 子句?
例如,我根据 id 获得单曲...
db.Single<Storage>(id);
但是如何根据简单的 WHERE 子句获得单曲?
db.Single<Storage>(WHERE columnname == "value");
Is it possible to apply a WHERE clause on a SubSonic query?
For example, I get get a single based on id...
db.Single<Storage>(id);
But how can I get a single based on a simple WHERE clause?
db.Single<Storage>(WHERE columnname == "value");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是可能的:
由于 db 是一个分部类,您可以扩展它。只需在同一命名空间(但解决方案中的另一个文件夹)中创建一个新文件。我认为这适用于亚音速 2,但与亚音速 3 类似。
that's possible:
Since db is a partial class you can extend it. Just create a new File within the same namespace (but another folder in your solution). This applies to subsonic 2 but will be similar to subsonic 3, I think.
感谢以上内容,这是一个帮助,最终我将其简化为以下......
Thanks for the above, this was a help and eventually I simplified this to the below...