流畅的 nhibernate 1.1 对存储过程的支持

发布于 2024-10-30 05:58:37 字数 172 浏览 0 评论 0原文

您好,

我读过 Fluent-nhibernate 发行说明,它支持存储过程。 但我没有得到任何例子来做到这一点。

我想插入更新删除&选择使用存储过程。

谁能给我举个例子吗?我找到了插入更新删除示例,但没有找到选择。

预先感谢

问候, 麦克风

HI

I have read on fluent-nhibernate release notes that it supports stored procedure.
but i didnt get any example to do that.

i want to insert update delete & select using stored procedure.

can anyone please show me example of that. i found insert update delete examples but didnt find select.

thanks in advance

regards,
Mike

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

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

发布评论

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

评论(1

情话难免假 2024-11-06 05:58:37

使用mapping.SqlDelete("your SP here");等可以插入/更新/删除。
(在您的 Mapping / MappingOverride 类中使用此代码)。

至于选择 - 假设您有一个要使用 SP 选择的属性,您可以使用以下命令:

mapping.Map(x => x.Property).Formula("Your select SP here");

insert / update / delete are possible using mapping.SqlDelete("your SP here"); etc.
(use this code inside your Mapping / MappingOverride class).

as for select- suppose you have a property you want to select using a SP, you can use the following:

mapping.Map(x => x.Property).Formula("Your select SP here");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文