Goblin
Goblin

Reputation: 8032

Setting up nHibernate with SQLite

Does anyone have a step-by-step guide on how to use nHibernate and SQLite? I can't figure out which dll's I need and which goes in the references and which just need to be copied. I would also like to know how to create the actual file for SQLite.

This is for a small application running .Net 4.0 - I understand some things have changed since 3.0 and NHibernate 1.2...

Upvotes: 1

Views: 304

Answers (1)

anthony
anthony

Reputation: 41118

DLLs:

  • NHibernate.dll
  • NHibernate.ByteCode.Castle.dll
  • Castle.DynamicProxy2.dll
  • Castle.Core.dll
  • Antlr3.Runtime.dll
  • log4net.dll
  • Iesi.Collections.dll
  • System.Data.SQLite.dll

Creating the db file:

Upvotes: 1

Related Questions