Support added in 68874cb08f816a8b8fd33c2789afbaae946fb166 (without additional references).
We will translate any method named Like with two arguments, in a class named SqlMethods. Apart from the one from Linq2Sql, we also provide one as NHibernate.Linq.SqlMethods.Like().
Oskar Berggren October 31, 2012 at 12:58 PM
I'm using the second of those two and it works nicely.
Alex Zaytsev October 24, 2012 at 2:55 PM
class Like : IRuntimeMethodHqlGenerator { private readonly IHqlGeneratorForMethod generator = new LikeGenerator(); public bool SupportsMethod(MethodInfo method) { return method != null && method.Name == "Like" && method.DeclaringType != null && method.DeclaringType.FullName == "System.Data.Linq.SqlClient.SqlMethods"; }
public IHqlGeneratorForMethod GetMethodGenerator(MethodInfo method) { return generator; } }
class LikeGenerator : IHqlGeneratorForMethod { public IEnumerable<MethodInfo> SupportedMethods { get { throw new NotSupportedException(); } }
The NHibernate LINQ provider should support the SqlMethods.Like() function from the System.Data.Linq.SqlClient namespace.