SubSonic 3 使用 Insert.Into<>无需指定列名和值?

发布于 2024-10-21 13:57:51 字数 480 浏览 1 评论 0 原文

我刚刚开始使用 SubSonic 3,但在基本的插入操作上遇到了困难。

我想将一个新行插入到表中,其中所有列和值均由实体对象指定。然而,我能找到的唯一示例看起来像是您必须指定每个列和值,对我来说,这与执行原始 SQL 插入相比并不是一个很大的进步!

myDB.Insert.Into<MyTable>(m => m.Col1, m=m.Col2, etc).Values(col1Val, col2Val,...)

我没有使用 ActiveRecord 模板,我知道 2.x 可以做到这一点,而且我下载的版本(SubSonic.Core 3.0.0.3)似乎没有 Repository.tt 模板。

这可能吗?

是否有适用于 v3.0.0.3 的 Repository.tt 模板?

谢谢,

Canice。

I'm just starting to use SubSonic 3 and I'm struggling with a basic insert operation.

I would like to insert a new row into a table with all columns and values as specified by an entity object. However the only examples I can find look like you have to specify each column and value, which to me isn't a big step up from doing the raw SQL insert!

myDB.Insert.Into<MyTable>(m => m.Col1, m=m.Col2, etc).Values(col1Val, col2Val,...)

I'm not using the ActiveRecord template which I know from 2.x can do this and there doesn't seem to a Repository.tt template with the version I downloaded (SubSonic.Core 3.0.0.3).

So is this possible?

Is there a Repository.tt template available for v3.0.0.3?

Thanks,

Canice.

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

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

发布评论

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

评论(1

如何视而不见 2024-10-28 13:57:51

您不需要 Repository.tt,您需要的只是实例化 SimpleRepository 的实例并调用 Insert 方法,该方法将类型作为通用参数和持久保存的实例。

你可以看一下 github 上的简单存储库测试:
https://github.com/subsonic/SubSonic -3.0/blob/master/SubSonic.Tests/Repositories/SimpleRepositoryTests.cs

You will not need a Repository.tt all you need is to instantiate an instance of SimpleRepository and call the Insert method which takes a type as generic argument and instance which is persisted.

You can take a look at the simple repository tests on github:
https://github.com/subsonic/SubSonic-3.0/blob/master/SubSonic.Tests/Repositories/SimpleRepositoryTests.cs

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