in our company we are using nhibernate as our default mapper. I write queries using nhibernate criteria - I noticed that all parameters are send as unicode like this:
exec sp_executesql N'SELECT this_.ID as ID23_0_, this_.Nazwa as Nazwa23_0_, this_.Opis as Opis23_0_, this_.TypGrupy as TypGrupy23_0_, this_.CzyDystrybuowana as CzyDystr5_23_0_, this_.CzyAktywna as CzyAktywna23_0_ FROM Grupa this_ WHERE this_.Nazwa like @p0',N'@p0 nvarchar(50)',@p0=N'%something%'
This is not the desired behavior. Is it possible to disable unicode in nhibernate queries? Thanks
Romek