-
Notifications
You must be signed in to change notification settings - Fork 17
InProcess Configuration
teamdev edited this page May 2, 2012
·
12 revisions
Configure DensoDB is a trivial task. Denso is configurable using a Configuration class.
- Create your own project, and add denso.core and denso.meta as references.
- Include the DeNSo.Core namespace in your source file with "using" keywork.
using DeNSo.Core;- Tell denso the name of your DB using this statment
Session.DefaultDataBase = "mydatabasename";- If you want you can change the DataBase path
DeNSo.Core.Configuration.BasePath = "the path of my DB"you are ready to use Denso.. :)