Support SqlMethods.Like() in LINQ queries.

Description

The NHibernate LINQ provider should support the SqlMethods.Like() function from the System.Data.Linq.SqlClient namespace.

Environment

None

Activity

Show:

Alex Zaytsev September 8, 2014 at 11:32 AM

Close issues resolved in 3.3.3

Oskar Berggren January 13, 2013 at 5:48 PM

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(); }
}

public HqlTreeNode BuildHql(MethodInfo method, Expression targetObject, ReadOnlyCollection<Expression> arguments, HqlTreeBuilder treeBuilder, IHqlExpressionVisitor visitor)
{
return treeBuilder.Like(
visitor.Visit(arguments[0]).AsExpression(),
visitor.Visit(arguments[1]).AsExpression());
}
}

Alex Zaytsev October 24, 2012 at 2:27 PM

I think we could try to add support for it and without referencing any libraries

Fixed

Details

Assignee

Reporter

Components

Fix versions

Affects versions

Priority

Who's Looking?

Open Who's Looking?

Created October 24, 2012 at 1:41 PM
Updated October 19, 2014 at 6:21 PM
Resolved January 13, 2013 at 5:48 PM
Who's Looking?