Tagged Questions
5
votes
1answer
280 views
Why does hbm2ddl.SchemaExport not run here?
Trying to play around with IInterceptor in NHibernate 2.1.2.4000 I've got the following bit of test code:
public class TestingNHibernateInterceptors
{
[Fact]
public void ...
3
votes
1answer
4k views
NHibernate SchemaExport and Configure() catch-22
I want to use DDD in a new project and model my classes first, then generate the database schema based on the class library. My plan is to do this with the NHibernate hbm2ddl tool SchemaExport.
The ...
1
vote
0answers
342 views
How can you use Fluent NHibernate AutoMapping and hbm2ddl for generating DDL statement with nullable MySql columns?
I have created a simple code example with nullable and non-nullable integers and datetime properties:
public class Person {
public virtual int Id { get; set; }
public virtual string Name { ...
0
votes
1answer
504 views
NHibernate and hbm2dll update attribute
i'm using NHibernate with Sdf database. In my hibernate.cfg.xml file i've set:
<property name="hbm2ddl.auto" value="update"/>
But this does not seem to work at all. "Update" attribute should ...