私はSummer of NHibernate Screencast Seriesと一緒に従っており、奇妙なNHibernate Exceptionを実行しています。NHibernate QuerySyntaxException
NHibernate.Hql.Ast.ANTLR.QuerySyntaxException:
Exception of type
'Antlr.Runtime.NoViableAltException' was thrown.
[select from DataTransfer.Person p where p.FirstName=:fn].
私は、次の方法でスクリーンキャストシリーズから外れています
- が
- 私が代わりに私MbUnitので
MSTestをを使用していますMS SQL Server Compactのデータベースに対して実行常に同じ結果のクエリの組み合わせをいくつでも試してみました。私の存在からCreateQuery構文
public IList<Person> GetPersonsByFirstName(string firstName)
{
ISession session = GetSession();
return session.CreateQuery("select from Person p " +
"where p.FirstName=:fn").SetString("fn", firstName)
.List<Person>();
}
ない直接のクエリは、この方法は
public Person GetPersonById(int personId)
{
ISession session = GetSession();
return session.Get<Person>(personId);
}
マイhibernate.cfg.xmlの
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory name="BookDb">
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.SqlServerCeDriver</property>
<property name="dialect">NHibernate.Dialect.MsSqlCeDialect</property>
<property name="connection.connection_string">Data Source=C:\Code\BookCollection\DataAccessLayer\BookCollectionDb.sdf</property>
<property name="show_sql">true</property>
<property name="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</property>
<mapping assembly="DataTransfer"/>
</session-factory>
</hibernate-configuration>
Person.hbm.xml
を動作しますが<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="DataTransfer" namespace="DataTransfer">
<class name="DataTransfer.Person,DataTransfer" table="Person">
<id name="PersonId" column="PersonId" type="Int32" unsaved-value="0">
<generator class="native"/>
</id>
<property name="FirstName" column="FirstName" type="String" length="50" not-null="false" />
<property name="LastName" column="LastName" type="String" length="50" not-null="false" />
</class>
</hibernate-mapping>
は無駄に* Person.hbm.xml *への変更を行いました。試行錯誤は奇妙なNHibernateパーサーエラーを処理する方法であると示していますが、どのような試行が必要ですか? – ahsteele
「DataTransfer.Person pから選択」し、同じエラーが発生しました。私はNHibernateのビルド2.1.0を使用しています。 MS SQL Server Compact Databaseを使用していますか?私たちの仕事の間に見ることができる唯一の他の違いは、あなたが* User.hbm.xml *のNHibernateTestsアセンブリについてより明白であるということです。他の考え? – ahsteele
あなたは "Personから"(それはhqlで合法です)という選択を終了しようとしましたか?私は実際にsqliteに対してテストしていますが、antlrパーサーがクエリを生成するように動作するため、データベースが問題であった場合は問題ありません。 – sirrocco