C# 클래스 NHibernate.Linq.SqlMethods

파일 보기 프로젝트 열기: nhibernate/nhibernate-core

공개 메소드들

메소드 설명
Like ( this matchExpression, string sqlLikePattern ) : bool

Use this method in a Linq2NHibernate expression to generate an SQL LIKE expression. (If you want to avoid depending on the NHibernate.Linq namespace, you can define your own replica of this method. Any 2-argument method named Like in a class named SqlMethods will be translated.) This method can only be used in Linq2NHibernate expressions, and will throw if called directly.

Like ( this matchExpression, string sqlLikePattern, char escapeCharacter ) : bool

Use this method in a Linq2NHibernate expression to generate an SQL LIKE expression with an escape character defined. (If you want to avoid depending on the NHibernate.Linq namespace, you can define your own replica of this method. Any 3-argument method named Like in a class named SqlMethods will be translated.) This method can only be used in Linq2NHibernate expressions, and will throw if called directly.

메소드 상세

Like() 공개 정적인 메소드

Use this method in a Linq2NHibernate expression to generate an SQL LIKE expression. (If you want to avoid depending on the NHibernate.Linq namespace, you can define your own replica of this method. Any 2-argument method named Like in a class named SqlMethods will be translated.) This method can only be used in Linq2NHibernate expressions, and will throw if called directly.
public static Like ( this matchExpression, string sqlLikePattern ) : bool
matchExpression this
sqlLikePattern string
리턴 bool

Like() 공개 정적인 메소드

Use this method in a Linq2NHibernate expression to generate an SQL LIKE expression with an escape character defined. (If you want to avoid depending on the NHibernate.Linq namespace, you can define your own replica of this method. Any 3-argument method named Like in a class named SqlMethods will be translated.) This method can only be used in Linq2NHibernate expressions, and will throw if called directly.
public static Like ( this matchExpression, string sqlLikePattern, char escapeCharacter ) : bool
matchExpression this
sqlLikePattern string
escapeCharacter char
리턴 bool