ufront / ufront-orm

The Object Relational Mapper, allows easy, type-safe access to your database. Builds on Haxe's SPOD but adds macro powered relationships, validation and client side usage
MIT License
13 stars 4 forks source link

Use fully qualified class name for SUInt #23

Closed kevinresol closed 9 years ago

kevinresol commented 9 years ago

otherwise the compiler will complain Class not found : SUInt

jasononeil commented 9 years ago

Ah, thank you. In all my code I've evidently never used a model that has a relationship but has not imported sys.db.Types.

Much appreciated!

kevinresol commented 9 years ago

Because I don't use the wildcard * or the whole module but tend to import each class explicitly. That work better with FlashDevelop's "organize import" function. Otherwise it will remove the import statement if it can't see the class being used in current code.