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 { get; set; }
public virtual int Length { get; set; }
public virtual int? LengthNullable { get; set; }
public virtual DateTime BirthDate { get; set; }
public virtual DateTime? BirthDateNullable { get; set; }
}
I would like to let the class "NHibernate.Tool.hbm2ddl.SchemaExport" to generate the following DDL statement:
create table `Person` (
Id INTEGER NOT NULL AUTO_INCREMENT,
Name VARCHAR(255),
Length INTEGER not null,
LengthNullable INTEGER null,
BirthDate DATETIME not null,
BirthDateNullable DATETIME null,
primary key (Id)
)
However, when I execute the code further fown, the following DDL will instead become generated:
create table `Person` (
Id INTEGER NOT NULL AUTO_INCREMENT,
Name VARCHAR(255),
Length INTEGER,
LengthNullable INTEGER,
BirthDate DATETIME,
BirthDateNullable DATETIME,
primary key (Id)
)
As you can see, the DDL generator does not seem to be able to make a distinction between "int?" and "int" (or between "DateTime?" and "DateTime") to generate "null" or "not null" clauses. Is that feature simply not supported, or am I doing something wrong ?
I have tested both of the following version combinations:
"NHibernate 2.1.2.400" and "Fluent NHibernate 1.1.0.685"
"NHibernate 3.0.0.400" and "Fluent NHibernate 1.2.0.694"
but with the same unsuccessful result
Below is my class "FluentNHibernateTableExporter" which I have used for generating the above DDL statement:
using FluentNHibernate.Automapping;
using FluentNHibernate.Cfg;
using FluentNHibernate.Cfg.Db;
using NHibernate.Tool.hbm2ddl;
public class MyAutomappingConfiguration : DefaultAutomappingConfiguration
{
public override bool ShouldMap(Type type)
{
return type.Namespace == typeof(Person).Namespace;
}
}
public class FluentNHibernateTableExporter
{
public static void ExportMySqlSchema()
{
Fluently
.Configure()
.Database(
MySQLConfiguration.Standard.ConnectionString(
cs => cs
.Server("localhost")
.Database("MyDatabase")
.Username("MyUserName")
.Password("MyPassword")
).ShowSql()
)
.Mappings(
m => m.AutoMappings.Add(
AutoMap.AssemblyOf<Person>(new MyAutomappingConfiguration())
)
)
.ExposeConfiguration(
config =>
{
var schemaExport = new SchemaExport(config); // NHibernate.Tool.hbm2ddl
schemaExport.Execute(true, true, false);
}
)
.BuildConfiguration();
}
}
this.Map(x => x.LengthNullable).Nullable()? Does that change things? If not, than there is probably something else at play here because it should work in theory. – Jon Adams Jan 13 '11 at 22:48Map(x => x.LengthNullable).Not.Nullable();. – Shagglez Jun 7 '11 at 16:03