Tagged Questions

1
vote
1answer
1k views

Using replace sql function in nHibernate named query

I am using Nhibernate 2.1.0 in my project. I have the an Item class with property Path and the following named query: <hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'> <sql-query ...
0
votes
1answer
55 views

CreateAlias generate Join To a Table Valued function

Is there a way to extend CreateAlias to work with Table Valued Function not just tables, I want to join a Table Valued Function to a base table, how can I do this with Criteria. SELECT ...
0
votes
2answers
79 views

NHibernate INSERT TO SQL Calculated field SET NOCOUNT

I need to surpress messages output from a SQL function. As in 1 row affected. I can't use SET NOCOUNT as it's invalid in a function. Anyone know a way to do this? Thanks. EDIT I was trying to ...
0
votes
2answers
658 views

using a temporary table with NHibernate

I'm trying to make what seems to be an advanced use of NHibernate with sql server functions. I'm using NHibernate's ICriteria interface to supply paging, sorting and filtering for my listviews. one of ...