SQL 2000 的 NHibernate 变量限制
NHibernate variable limits with SQL 2000
我正在尝试在 SQL 2000 的休眠状态下使用 Take
方法。这样做时,出现错误:Dialect does not support variable limits.
在四处搜索时,我找到了一种方法来覆盖对变量限制支持的检查,并将我的代码设置如下:
return Fluently.Configure()
.Database(PersistenceConfigurer("####"))
.Mappings(m => m.HbmMappings.AddFromAssembly(Assembly.Load("####")))
.Mappings(m => m.FluentMappings.AddFromAssembly(Assembly.Load("####")))
.CurrentSessionContext<WebSessionContext>()
.BuildSessionFactory();
}
private static IPersistenceConfigurer PersistenceConfigurer(string connection)
{
var provider = MsSqlConfiguration.MsSql2000.ConnectionString(connection);
provider.Dialect<FixedDialect>();
return provider;
}
}
public class FixedDialect : NHibernate.Dialect.MsSql2000Dialect
{
public override bool SupportsVariableLimit
{
get
{
return true;
}
}
}
这似乎生成了正确的语法。它创建语句
[ select top @p0 order0_.field1 as field1_, order0_.field2 as field2_ from db.table order0_ where order0_.field3=@p1 ]
Name:p1 - Value:LY02 Name:p2 - Value:10
但它没有为 @p0 设置值,所以它会反作用 Line 1: Incorrect syntax near '@p0'.
我能做些什么来解决这个问题吗?为什么这个方言不支持top功能?
我只需要将 NHibernate 更新到最新版本。 4.0.3版本不存在该问题
我正在尝试在 SQL 2000 的休眠状态下使用 Take
方法。这样做时,出现错误:Dialect does not support variable limits.
在四处搜索时,我找到了一种方法来覆盖对变量限制支持的检查,并将我的代码设置如下:
return Fluently.Configure()
.Database(PersistenceConfigurer("####"))
.Mappings(m => m.HbmMappings.AddFromAssembly(Assembly.Load("####")))
.Mappings(m => m.FluentMappings.AddFromAssembly(Assembly.Load("####")))
.CurrentSessionContext<WebSessionContext>()
.BuildSessionFactory();
}
private static IPersistenceConfigurer PersistenceConfigurer(string connection)
{
var provider = MsSqlConfiguration.MsSql2000.ConnectionString(connection);
provider.Dialect<FixedDialect>();
return provider;
}
}
public class FixedDialect : NHibernate.Dialect.MsSql2000Dialect
{
public override bool SupportsVariableLimit
{
get
{
return true;
}
}
}
这似乎生成了正确的语法。它创建语句
[ select top @p0 order0_.field1 as field1_, order0_.field2 as field2_ from db.table order0_ where order0_.field3=@p1 ]
Name:p1 - Value:LY02 Name:p2 - Value:10
但它没有为 @p0 设置值,所以它会反作用 Line 1: Incorrect syntax near '@p0'.
我能做些什么来解决这个问题吗?为什么这个方言不支持top功能?
我只需要将 NHibernate 更新到最新版本。 4.0.3版本不存在该问题