开发者

Trying to create MySql DB with Nhibernate - need some direction

So I am very new to web development and working on a new project that will make use of Nhibernate as my ORM and MySql database.

I wanted to set it up so that NHibernate would create my database table based on the (all necessary NHibernate files). So far I have concluded that NHibernate will generate the DB schema that I have laid out with the mappings and class files.

The problem I am seeing is that it appears that you must have the database in place in MySql first for NHibernate to create the table (understood). However, when reviewing creating a MySql database in the manual it is requiring you to specify the schema with the create command.

So far the number of blogs I have read concentrate on what you need for NHibernate and not much details in correctly prepping your MySql server.

An开发者_C百科y direction or advise is greatly appreciated.


You need to run the "create database [databasename];" command before building up your schema. You don't neeed to specify a schema to use this command.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜