Skip to content

Instantly share code, notes, and snippets.

@hungdv136
Created November 25, 2017 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hungdv136/cb67f229ce69ef00f3ef694cdbabc844 to your computer and use it in GitHub Desktop.
Save hungdv136/cb67f229ce69ef00f3ef694cdbabc844 to your computer and use it in GitHub Desktop.
FtsExpression
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore.Query.Expressions;
namespace StudyEfCore.Expressions
{
public class FtsExpression : SqlFunctionExpression
{
public FtsExpression(string method, IEnumerable<Expression> arguments) : base(method, typeof(bool), arguments) { }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment