0

我正在研究使用 NHibernate,一切看起来都不错。有没有可以用来从当前数据库生成 POCO 的工具?这将加快开发人员的时间,而不是创建它们。

4

3 回答 3

2

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

于 2013-08-02T10:40:21.070 回答
0

Entity Framework Power Tools 可以从数据库为您生成 POCO。有关一些信息,请参阅本文。不过,您可能需要稍微调整一下流程;稍作调整可以产生非常好的结果:

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

EFPT

当然,如果一切都没有对齐,那么您将应用实体框架特定的属性,您需要删除这些属性。但是你仍然会有一个很好的起点。

个人意见警告!另一种可能性是简单地保留属性并使用实体框架。如果您大量使用 LINQ,我会推荐它。我发现 NHibernate 的 LINQ 提供程序在大多数情况下都可以工作,但会因 1) 极其微不足道的 LINQ 表达式和 2) 极其复杂的 LINQ 表达式而崩溃。但是ta.speot.is!它一直在变好!每个都有自己的,但现在实体框架的 LINQ 提供程序非常一致。

于 2013-08-01T10:40:56.270 回答
0

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

    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
于 2013-09-05T18:27:26.453 回答