Oracle.EntityFrameworkCore 8 bind variables
Hi, I use Oracle.EntityFrameworkCore 8 with oracle 19.21 or 19.23 (I don't remember) server, My code looks like:
public IQueryable<M> FindByCondition(Expression<Func<M, bool>> expression, bool trackChanges)
{
return !trackChanges ?
RepositoryContext.Set<M>().Where(expression).AsNoTracking() :
RepositoryContext.Set<M>().Where(expression);
} when I call that by parameter, the parameter is not bind variable, it looks literal, Help me please how can I use bind variables, a lot of code call this function
thanks