1

这段代码有什么问题吗。我没有生成任何东西,也没有抛出异常。

  public static void ExportSchema()
        {
            Configuration cfg = LoadDefaultConfiguration();
            Fluently.Configure(cfg)
                .Mappings(m => m.FluentMappings.AddFromAssembly(Assembly.Load("dnnSphere.Meta")))
                .ExposeConfiguration(c => new SchemaExport(c).SetOutputFile("myDDL.sql").Execute(true,true,false));
        }
4

1 回答 1

6

这取决于你想做什么。例如,如果您在内存数据库中使用 SQLite,除非我指定连接,否则我永远不会让它工作。这意味着我必须先打开一个会话并获得会话的连接。

    protected InMemoryFixture()
    {

        Configuration config = GetConfig();
        ISessionFactory sessionFactory = config.BuildSessionFactory();


        ISession session = _sessionFactory.OpenSession();

        new SchemaExport(_config).Execute(true, true, false, session.Connection, Console.Out);

    }

    private Configuration GetConfig()
    {
        return GetMappings()
            .Database(SQLiteConfiguration.Standard.InMemory)
            .BuildConfiguration();
    }

    private FluentConfiguration GetMappings()
    {
        return Fluently.Configure().Mappings(m => m.FluentMappings.AddFromAssemblyOf<NewsMap>());
    }

然后还有 SchemaExport(cfg).Create(true, true); 当然还有 SchemaUpdate(cfg)。

于 2009-09-22T10:38:25.520 回答