Cascade 使用 Fluent NHibernate AutoMapping 进行保存 - 旧答案仍然有效吗?
我想做的正是这个问题所要求的: 使用 Fluent NHibernate AutoMapping 进行级联保存
使用 Fluent Nhibernate 映射打开“级联”使用一次调用对所有类和关系类型全局一次,而不是为每个映射单独设置。
前面问题的答案看起来不错,但我担心 Fluent Nhibernate API 去年改变了它的 .WithConvention 语法并破坏了答案......要么是这样,要么是我遗漏了一些东西。
我不断收到一堆与 IOneToOnePart、IManyToOnePart 及其所有变体相关的命名空间未找到错误:
“找不到类型或命名空间名称‘IOneToOnePart’(您是否缺少 using 指令或程序集引用?)
”我已经尝试过官方示例 dll、RTM dll 和最新版本,但它们似乎都无法使 VS 2008 看到所需的命名空间。
第二个问题是我想将该类与我的 AutoPersistenceModel 一起使用 但我不确定这条线在哪里: .ConventionDiscovery.AddFromAssemblyOf() 在我的工厂创建方法中。
private static ISessionFactory CreateSessionFactory()
{
return Fluently.Configure()
.Database(SQLiteConfiguration.Standard.UsingFile(DbFile))
.Mappings(m => m.AutoMappings
.Add(AutoMap.AssemblyOf<Shelf>(type => type.Namespace.EndsWith("Entities"))
.Override<Shelf>(map =>
{
map.HasManyToMany(x => x.Products).Cascade.All();
})
)
)//emd mappings
.ExposeConfiguration(BuildSchema)
.BuildSessionFactory();//finalizes the whole thing to send back.
}
下面是我正在尝试的类和 using 语句
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using FluentNHibernate.Conventions;
using FluentNHibernate.Cfg;
using FluentNHibernate.Cfg.Db;
using NHibernate;
using NHibernate.Cfg;
using NHibernate.Tool.hbm2ddl;
using FluentNHibernate.Mapping;
namespace TestCode
{
public class CascadeAll : IHasOneConvention, IHasManyConvention, IReferenceConvention
{
public bool Accept(IOneToOnePart target)
{
return true;
}
public void Apply(IOneToOnePart target)
{
target.Cascade.All();
}
public bool Accept(IOneToManyPart target)
{
return true;
}
public void Apply(IOneToManyPart target)
{
target.Cascade.All();
}
public bool Accept(IManyToOnePart target)
{
return true;
}
public void Apply(IManyToOnePart target)
{
target.Cascade.All();
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现对整个项目执行此操作的最简单方法是使用 DefaultCascade:
转到 “最简单的约定” 部分对此进行了说明,并列出了其他内容。
编辑:
以下是 Wiki 中的列表:
警告 - Wiki 中的某些方法名称可能是错误的。我用我可以验证的内容(即 DefaultCascade 和 DefaultLazy)编辑了 Wiki,但无法保证其余内容。但如果需要的话,您应该能够通过 Intellisense 找出正确的名称。
The easiest way I've found to do this for a whole project is to use DefaultCascade:
Go to "The Simplest Conventions" section on the wiki, for this, and a list of others.
Edit:
Here's the list from the Wiki:
A word of warning - some of the method names in the Wiki may be wrong. I edited the Wiki with what I could verify (i.e. DefaultCascade and DefaultLazy), but can't vouch for the rest. But you should be able to figure out the proper names with Intellisense if the need arises.
这是一个类似于入门指南的完整工作示例 https://github.com /jagregory/ Fluent-nhibernate/wiki/入门
Here's a full working example similar to the Getting Started guide https://github.com/jagregory/fluent-nhibernate/wiki/Getting-started
约定的签名已更改。你不使用像ReSharper这样的东西吗?这会让你得出这个结论。
您可以在wiki 上阅读更多关于新约定的信息。
The signature for the conventions has changed. Are you not using something like ReSharper? That would point you to that conclusion.
You can read more about the new conventions on the wiki.