1
votes

I am trying to develop my Hello World program in NHibernate.

My codes are as follows:

MyClass.cs
----------
using System.Collections.Generic;
using System.Text;
using System;
using NHibernate.Collection;
using NHibernate.Mapping;
using Iesi.Collections;

namespace NHibernate__MyClass
{
    public class MyClass 
    {
        int id;
        string name;
        int _value;

        public MyClass()
        {
            id = 0;
            name = "";
            _value = 0;
        }

        public virtual int Id
        {
            get { return id; }
            set { id= value; }
        }

        public virtual string Name
        {
            get { return name; }
            set { name= value; }
        }

        public virtual int Value
        {
            get { return _value; }
            set { _value= value; }
        }
    }
}


MyClass.hbm.xml
---------------
<?xml version="1.0" encoding="utf-8" ?>

<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="NHibernate__MyClass" assembly="NHibernate__MyClass">
  <class name="MyClass" table="MyClass">
    <id name="Id">
      <column name="ID" sql-type="int" not-null="true"/>
      <generator class="native" />
    </id>
    <property name="Name">
      <column name="Name" not-null="true" />
    </property>
    <property name="Value">
      <column name="Value" not-null="true" />
    </property>
  </class>
</hibernate-mapping>

Program.cs
----------
using System;
using System.Collections.Generic;
using System.Text;

using NHibernate;
using NHibernate.Cfg;

namespace NHibernate__MyClass
{
    class Program
    {
        static void Main(string[] args)
        {
            MyClass myClass = new MyClass();
            myClass.Id = 1;
            myClass.Name = "Hello World!";
            myClass.Value = 100;

            ISessionFactory sessionFactory = new Configuration().Configure().BuildSessionFactory();
            ISession session = sessionFactory.OpenSession();

            session.BeginTransaction();
            session.Save(myClass);
            session.Transaction.Commit();

            Console.ReadLine();
        }
    }
}

App.config
----------
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section
    name="hibernate-configuration"
    type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate"
/>
  </configSections>

  <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <session-factory>
      <property name="dialect">NHibernate.Dialect.MsSql2000Dialect</property>
      <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
      <property name="connection.connection_string">Data Source=.\SQLEXPRESS;Initial Catalog=NHibernate;Integrated Security=True</property>
      <mapping assembly="NHibernate__MyClass" />
    </session-factory>
  </hibernate-configuration>
</configuration>


SQL Table
---------
CREATE TABLE [dbo].[MyClass](
    [ID] [int] NOT NULL,
    [Name] [varchar](50) NOT NULL,
    [value] [int] NOT NULL
) ON [PRIMARY]

But this program is generating an Exception:

Exception message : {"could not insert: [NHibernate__MyClass.MyClass][SQL: INSERT INTO MyClass (Name, Value) VALUES (?, ?); select SCOPE_IDENTITY()]"}

Inner Exception Message : {"Cannot insert the value NULL into column 'ID', table 'NHibernate.dbo.MyClass'; column does not allow nulls. INSERT fails.\r\nThe statement has been terminated."}

What can be the problem?

NHibernate DLL version = 2.0.0.2002

1

1 Answers

3
votes

Because of this tag in your mapping file

<generator class="native" />

In SQL you need to set the ID field in that table to an identity.

You can alternatively have nHibernate generate identity fields.