-
Some free SQL Injection Scanners
-
Here you can find a complete list of free SQL Injection Scanners for evaluate and secure your code.
Tonio
-
SQL Server Performance Tuning Tips
-
Here you can find a nice article with some tips for speed up your queries in SQL Server with TSQL.
Ant.
-
Bug in NHibernate Alias Management
-
I found a bug in NHibernate.I added this formula to a property in a mapping file:
formula='(select GL.name1 FROM GetLocalizedGeoRegions(:CultureFilter.LangId) as GL WHERE
GL.ID1=GeoRegionIden)'
In the stacktrace I found this subquery for that formula:
select GL.name1 FROM GetLocalizedGeoRegions(:CultureFilter.LangId) as workplace2_.GL WHERE
GL.ID1=workplace2_.GeoRegionIden)
The error was was in workplace2_.GL where workplace2_ is the alias for original table for my property...:-(, so NHibernate try to get a column called GL, but GL is my alias...:-(((
I will post this bug to NHibernate's team, but some other friends said to me that "Alias" are not so well done...
I hope that it will improve...but NHibernate is a great framework if you want an ORM!!!:-)
Bye
Antonio