3

次のテストケースで特に混乱しています。

public void TestMapping()
{
    var autoPersistenceModel = AutoMap.AssemblyOf<RepositoryEntity>().Where(
        x => x.Namespace.EndsWith("Descriptors"));

    var configuration = Fluently.Configure()
        .Database(SQLiteConfiguration.Standard.ShowSql().InMemory)
        .Mappings(x => x.AutoMappings.Add(autoPersistenceModel))
        .ExposeConfiguration(x => new NHibernate.Tool.hbm2ddl.SchemaExport(x).Create(true, false));

    var sessionFactory = configuration.BuildSessionFactory();

    using (var session = sessionFactory.OpenSession())
    {
        new PersistenceSpecification<IndicatorUnitDescriptor>(session)
            .CheckProperty(x => x.Name, "Name1")
            .CheckProperty(x => x.Timestamp, new DateTime(2000, 10, 10))
            .VerifyTheMappings();
    }
}

ご覧のとおり、自動マッピングを試していますが、残念ながら、次のテスト ケースでは次の SQLite 例外が発生します (最初の例には、実行された実際のクエリが含まれています)。

drop table if exists "IndicatorUnitDescriptor"

drop table if exists "StockUnitDescriptor"

create table "IndicatorUnitDescriptor" (
   Id  integer,
   Name TEXT,
   Timestamp DATETIME,
   primary key (Id)
)

create table "StockUnitDescriptor" (
   Id  integer,
   Name TEXT,
   Timestamp DATETIME,
   primary key (Id)
)

NHibernate: INSERT INTO "IndicatorUnitDescriptor" (Name, Timestamp) VALUES (@p0, @p1); select last_insert_rowid();@p0 = 'Name1' [Type: String (0)], @p1 = 10.10.2000 0:00:00 [Type: DateTime (0)]

System.Data.SQLite.SQLiteException: SQLite error
no such table: IndicatorUnitDescriptor

そして、なぜこのようになるのか理解できません.SQLコマンドは適切に機能しているようで、対応するテーブルはcreate tableクエリによって作成されるはずです。

コードに何か問題があると思います (おそらく何かを見逃しています)。私たちを手伝ってくれますか?

4

1 に答える 1

1

2つのセッションを使用していると思います。1つはデータベースの作成中、および適切なテスト中です。このように設定してみてください。

  Configuration cfg = Fluently.Configure()
        .Database(SQLiteConfiguration.Standard.InMemory())
        .Mappings(m => m.HbmMappings.AddFromAssembly(_mappingsAssembly))
        .BuildConfiguration();

    var session = cfg.BuildSessionFactory().OpenSession();

    new SchemaExport(cfg).Execute(false, true, false, session.Connection, null);
于 2010-12-24T17:19:07.520 に答える