You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Linq.Expressions;
|
|
|
|
using System.Reflection;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace SqlSugar.Access
|
|
|
|
{
|
|
|
|
public partial class AccessExpressionContext : ExpressionContext, ILambdaExpressions
|
|
|
|
{
|
|
|
|
public SqlSugarProvider Context { get; set; }
|
|
|
|
public AccessExpressionContext()
|
|
|
|
{
|
|
|
|
base.DbMehtods = new SqlServerMethod();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
public partial class AccessMethod : DefaultDbMethod, IDbMethods
|
|
|
|
{
|
|
|
|
public override string HasValue(MethodCallExpressionModel model)
|
|
|
|
{
|
|
|
|
if (model.Args[0].Type == UtilConstants.GuidType)
|
|
|
|
{
|
|
|
|
var parameter = model.Args[0];
|
|
|
|
return string.Format("( {0} IS NOT NULL )", parameter.MemberName);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var parameter = model.Args[0];
|
|
|
|
return string.Format("( {0}<>'' AND {0} IS NOT NULL )", parameter.MemberName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|