vote up 1 vote down star

Something strange is going on with NHibernate for me. I can select, and I can insert. But I can't do and update against MySql.

Here is my domain class

public class UserAccount
{
    public virtual int Id { get; set; }
    public virtual string UserName { get; set; }
    public virtual string Password { get; set; }
    public virtual bool Enabled { get; set; }

    public virtual string FirstName { get; set; }
    public virtual string LastName { get; set; }
    public virtual string Phone { get; set; }

    public virtual DateTime? DeletedDate { get; set; }
    public virtual UserAccount DeletedBy { get; set; }
}

Fluent Mapping

public class UserAccountMap : ClassMap<UserAccount>
{
    public UserAccountMap()
    {
        Table("UserAccount");
        Id(x => x.Id);
        Map(x => x.UserName);
        Map(x => x.Password);
        Map(x => x.FirstName);
        Map(x => x.LastName);
        Map(x => x.Phone);
        Map(x => x.DeletedDate);
        Map(x => x.Enabled);
    }
}

Here is how I'm creating my Session Factory

        var dbconfig = MySQLConfiguration
            .Standard
            .ShowSql()
            .ConnectionString(a => a.FromAppSetting("MySqlConnStr"));

        FluentConfiguration config = Fluently.Configure()
            .Database(dbconfig)
            .Mappings(m =>
            {
                var mapping = m.FluentMappings.AddFromAssemblyOf<TransactionDetail>();
                mapping.ExportTo(mappingdir);
            });

and this is my NHibernate code:

        using (var trans = Session.BeginTransaction())
        {
            var user = GetById(userId);
            user.Enabled = false;
            user.DeletedDate = DateTime.Now;
            user.UserName = "deleted_" + user.UserName;
            user.Password = "--removed--";
            Session.Update(user);
            trans.Commit();
        }

No exceptions are being thrown. No queries are being logged. Nothing.

flag

Have you tried running this with NHProfiler? You should be able to download a trial copy at least. This will show you the SQL that is being generated. This usually helps me when I'm stumped. – Chris Missal Aug 27 at 2:10
Nope, but that is probably my next step. I do have ShowSql turned on, so I can see the sql being executed, and no update statement is being sent. Personally I think I have a SessionFactory issue. – Chris Brandsma Aug 27 at 2:47
1  
The thing is , even without the Session.Update , the user should get updated. Something special in the GetById method ? :D – sirrocco Aug 27 at 4:05

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.