hibernated icon indicating copy to clipboard operation
hibernated copied to clipboard

HibernateD is ORM for D language (similar to Hibernate)

Results 17 hibernated issues
Sort by recently updated
recently updated
newest added

The `@Column` definition currently: ``` D struct Column { immutable string name; immutable int length; } ``` It would be great if there was a third parameter to mark a...

enhancement

the following seems to break: ``` @Entity @Table("books") public class Book { public: @Id @Generated Uint id; @Column("title", 250) @NotNull string title; @ManyToOne @JoinColumn("author_id") @NotNull Person author; } @Entity @Table("people")...

bug

Hibernate allows support for inheritance making it possible to things like this: ``` D @Inheritance(strategy=InheritanceType.SINGLE_TABLE) @DiscriminatorColumn(name="content_type", discriminatorType=DiscriminatorType.STRING) @Table("site_content") public class SiteContent { @Id @Generated public uint id; @Column("title") @NotNull public...

enhancement

``` class Customer { int id; string name; // Embedded is inferred from type of Address Address address; this() { address = new Address(); } } @Embeddable class Address {...

bug

Hello! Is it possible to generate models from a database schema? Like here: http://www.treefrogframework.org/documents/generator It maybe helpful in such case: http://programmers.stackexchange.com/questions/299715/using-orms-in-two-separate-programs-which-share-a-db

Would be great if the indexes generation could be handled by hibernated.

enhancement

i tried to execute CURRENT_DATE(), and UPPER() but i get errors: "Alias name identifier expected in FROM clause near ...." "No property CURRENT_DATE found in entity ...." here is the...

enhancement
question