NHibernate - 有生成POCO的工具吗?

时间:2013-08-01 10:37:06

标签: nhibernate fluent-nhibernate poco

我正在研究使用NHibernate,看起来一切都很好。是否有一个工具可用于从当前数据库生成POCO?与创建它们相比,这将加快开发人员的时间。

3 个答案:

答案 0 :(得分:2)

NHibernate映射生成器项目(http://nmg.codeplex.com/)可以创建实体类和所有形式的映射(XML,流畅的nhibernate等)。

答案 1 :(得分:0)

实体框架Power Tools可以从数据库为您生成POCO。有关一些信息,请参阅this article。您可能需要稍微调整一下这个过程;一些调整可以产生非常好的结果:

  

如果一切排好,那么我们根本不会生成任何映射:

     

EFPT

当然,如果所有内容都没有排成一行,那么您将获得需要删除的特定于实体框架的属性。但是你仍然有一个很好的起点。

个人意见警告!另一种可能性是简单地保留属性并使用实体框架。如果你大量使用LINQ,我会推荐它。我发现NHibernate的LINQ提供程序在大多数情况下都可以工作,但却有1)非常简单的LINQ表达式和2)非常复杂的LINQ表达式。 但是ta.speot.is!它一直在变得越来越好!每个都是他们自己的,但是现在Entity Framework的LINQ提供者非常一致。

答案 2 :(得分:0)

这是一个快速的SQL脚本,用于创建poco和map。随意根据需要进行调整。

    begin

    declare @tablename varchar(200)
    set @tablename = 'tablename'

    declare @outputTable table ( id int identity(1,1), rowType varchar(4), outputString varchar(5000))
    declare @columnname varchar(200)
    declare @isNullable bit
    declare @xtype tinyint
    declare @xtypeString varchar(200)
    declare @outputString varchar(5000)

    declare c1 cursor for 
        select name, isnullable, xtype from syscolumns
            where id in (select id  from sysobjects where name = @tablename)
            order by colorder

    open c1

    set @outputString = 'Table("' +  Upper(@tablename) + '");'

    insert into @outputTable (rowType, outputString) values('map',@outputString)

    fetch next from c1 into @columnName, @isNullable, @xtype
    while(@@FETCH_STATUS=0)
    begin

    print @columnname
    print @isnullable
    print @xtype

    set @outputString = ''
    set @xtypeString = ''

    if (@xtype = 104)
        set @xtypeString = 'bool'

    if (@xtype = 60)
        set @xtypeString = 'double'

    if (@xtype = 62)
        set @xtypeString = 'double'

    if (@xtype = 175)
        set @xtypeString = 'string'

    if (@xtype = 56)
        set @xtypeString = 'int'

    if (@xtype = 48)
        set @xtypeString = 'int'

    if (@xtype = 167)
        set @xtypeString = 'string'

    if (@xtype = 61)
        set @xtypeString = 'DateTime'

    if (@isnullable = 1 and len(@xtypeString) > 0 and @xtypeString <> 'string') 
        set @xtypeString = @xtypeString + '?'

    if @xtypeString=''
        set @xtypeString = cast(@xtype as varchar)

    set @outputString = 'public virtual ' + @xtypeString + '   ' +  @columnName + '  {get;set;}          //  ' + @columnname

    insert into @outputTable (rowType, outputString)    values('poco', @outputString)

    set @outputString = 'Map(x => x.'+ @columnname+').Column("' + @columnname+'");'

    insert into @outputTable (rowType, outputString)    values('map', @outputString)


    fetch next from c1 into @columnName, @isNullable, @xtype
    end

    close c1
    deallocate c1

    select * from @outputTable where rowType = 'poco' order by id 
    select * from @outputTable where rowType = 'map' order by id 
end