1

我在用

GeneratedBy.HiLo(string table, string column, string maxLo, string where);

为主键。目前我正在寻找如何从表中加载 maxLo 而不是将其作为常量存储在代码中的可能性。NextHi 的值是从数据库表中加载的(好的,它必须是,否则整个概念根本不起作用)。但是我也没有找到如何从表中加载 maxLo 的方法。从快速代码研究看来,这似乎是不可能的,但我仍然可能遗漏了一些东西。

我需要它的原因:我有业务应用程序和单独的配置应用程序,如果它将某些内容插入表中,则需要使用相同的 maxLo 来保持 ids 的一致性。当然,应用程序可以仅以独占方式运行。两种可能的解决方法: - 我可以有一些共享的 Dll 来存储 maxLo - 我可以使用数据库中的表并自己加载 maxLo

但是仍然可以在没有任何解决方法的情况下做我想做的事。

FluentNHibernate 版本:2.0.1.0

4

1 回答 1

0

我希望得到答案,但我的答案是:不我们必须将此值作为设置传递。原因是表格 hi-lo 生成器的实现方式。

检查TableHiLoGenerator 代码 .Configure()

/// <summary>
/// Configures the TableHiLoGenerator by reading the value of <c>table</c>, 
/// <c>column</c>, <c>max_lo</c>, and <c>schema</c> from the <c>parms</c> parameter.
/// </summary>
/// <param name="type">The <see cref="IType"/> the identifier should be.</param>
/// <param name="parms">An <see cref="IDictionary"/> of Param values that are keyed by parameter name.</param>
/// <param name="dialect">The <see cref="Dialect.Dialect"/> to help with Configuration.</param>
public override void Configure(IType type, IDictionary<string, string> parms, Dialect.Dialect dialect)
{
    base.Configure(type, parms, dialect);
    maxLo = PropertiesHelper.GetInt64(MaxLo, parms, Int16.MaxValue);
    lo = maxLo + 1; // so we "clock over" on the first invocation
    returnClass = type.ReturnedClass;
}

最有趣的部分是评论:

//Configures the TableHiLoGenerator by reading the value of <c>table</c>, 
// <c>column</c>, <c>max_lo</c>, and <c>schema</c> from the <c>parms</c> parameter.

和参数IDictionary<string, string> parms

在极端情况下,我们可以使用它(及其流畅的版本:)GeneratedBy.HiLo(...)-从某个地方(例如使用 ADO.NET)读取属性并将这些值传递给配置......这真的很极端,但可能答案

于 2015-06-03T05:46:24.030 回答