是否有 Fluent NHibernate 的 SPROC 映射和用法示例?
我正在寻找一个示例,说明如何在映射中使用 Fluent NHibernate 的 SqlUpdate、SqlDelete 和 SqlInsert 部分。
我有一个标准
public class MyObjectMap : ClassMap<MyObject> {
public MyObjectMap() {
Table("MyObjectsTable");
Id(x => x.Id).GeneratedBy.Identity();
Map(x => x.This, "That");
// Ad nauseam
// how do I use this part?
SqlUpdate(" some sql here ");
问题是,如何以这种方式使用 StoredProcedurePart?如何仅指定正确的参数?
I'm looking for an example of how I would/should use the SqlUpdate, SqlDelete, and SqlInsert parts of Fluent NHibernate in my mappings.
I have a standard
public class MyObjectMap : ClassMap<MyObject> {
public MyObjectMap() {
Table("MyObjectsTable");
Id(x => x.Id).GeneratedBy.Identity();
Map(x => x.This, "That");
// Ad nauseam
// how do I use this part?
SqlUpdate(" some sql here ");
The question is, how do I make use of a StoredProcedurePart in this way? How do I specify only the right parameters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论