A month ago I released HqlAddin Green Popotito . After talking with my friend Fabio Maulo , he convinced me to add support for hbm files. Well, that’s it, the new release add supports for hbm.xml files and I’ve absolutely dropped the support for “hql” files ( sorry but this is not the standard way of...
Today I have released a new version of the HqlAddin project, the version is 1.0.0. 45 50 – Alpha 2 (a.k.a. Green Popotito). Green Popotito comes with a new amazing feature, intellisense for properties and entities. This is a great work that comes from Felice Pollano’s NhWorkbench , so kudos for him....
I started to work in an HQL addin for Visual Studio two weeks ago. As described in the project site : This Visual Studio addin will provide the following features for the HQL file extension: -syntax highlighting (done), -syntax checking (done) -intellisense ( not yet ) Currently the addin support syntax...
In the spirit of “ Release early. Release often. And listen to your customers ” ( cit. ), even if not so early in term of time since the preview , I decided to release a first drop of the “HQL Intellisense thing” I’m working on. The current version is just able to load an...
[ My blog ] A simple SQL: SELECT * FROM Animal AS a1 INNER JOIN Animal AS a2 on a1.mother_id = a2.ID and a1.body_weight < :aLimit Another: SELECT * FROM Animal AS a1 INNER JOIN Animal AS a2 on a1.mother_id = a2.ID WHERE a1.body_weight < :aLimit Which is the difference in term of results ? There...