1

我有一个没有从数据库中获取任何记录的基本方法。在配置中,它可以毫无问题地创建表。它总是返回零记录。我在下面添加了配置文件。我不明白有什么问题。

   public List<Note> GetAll()
    {
        var session = NHibernateHelper.OpenSession();

        var note = session.CreateCriteria<Note>().List<Note>();

        return note.ToList();
    }

帮手:

public class NHibernateHelper
{
    private static ISessionFactory _sessionFactory;

    private static ISessionFactory SessionFactory
    {
        get 
        {
            if (_sessionFactory == null)
            {
                InitializeSessionFactory();
            }

            return _sessionFactory; 
        }
    }

    private static void InitializeSessionFactory()
    {
        _sessionFactory = Fluently.Configure()
            .Database(MsSqlConfiguration.MsSql2008
                          .ConnectionString(
                              @"Server={server};Database=ToDo;
                                User ID=lorem;Password=lorem;
                                Trusted_Connection=False;Encrypt=True;Connection Timeout=30;")
                          .ShowSql()
            )
            .Mappings(m => m.FluentMappings.AddFromAssemblyOf<Note>())
            .ExposeConfiguration(cfg => new SchemaExport(cfg)
            .Create(true, true))
            .BuildSessionFactory();
    }

    public static ISession OpenSession()
    {
        return SessionFactory.OpenSession();
    }

}
4

1 回答 1

0

尝试这个:

  1. 首先使用此链接激活 nhibernate 登录:http: //nhforge.org/wikis/howtonh/configure-log4net-for-use-with-nhibernate.aspx
  2. 如果找不到任何内容,请在输出窗口中查找异常或其他警告,请转到步骤 3。
  3. 完成第 1 步后,您可以直接在 Microsoft SQL Server 管理控制台或类似工具中执行原始 sql 语句,可能错误出在类定义中。
于 2013-05-30T15:38:22.973 回答