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
26 views
Creating a UserDefined CLR function in .Net
i want to create a CLR function, i created a normal class library file and coded as below, i dont want to use SqlServerProject, as i cannot find some classes there.
using System;
using ...
0
votes
2answers
66 views
SqlFunctions wrapper
I want to use SqlFunctions.StringConvert() in many places in different projects in my solution.
I dont want each project to hold reference to system.data.entity so I decided to put a wrapper in my ...