| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Threading.Tasks;
- namespace SqlSugar
- {
- public class SubLeftJoin : ISubOperation
- {
- public bool HasWhere
- {
- get; set;
- }
- public string Name
- {
- get { return "LeftJoin"; }
- }
- public Expression Expression
- {
- get; set;
- }
- public int Sort
- {
- get
- {
- return 302;
- }
- }
- public ExpressionContext Context
- {
- get; set;
- }
- public string GetValue(Expression expression)
- {
- var exp = expression as MethodCallExpression;
- var argExp = exp.Arguments[0];
- var name =this.Context.GetTranslationColumnName((argExp as LambdaExpression).Parameters[0].Name);
- var parameter = (argExp as LambdaExpression).Parameters.Last();
- foreach (var item in (argExp as LambdaExpression).Parameters)
- {
- Context.InitMappingInfo(item.Type);
- }
- this.Context.RefreshMapping();
- var tableName= Context.GetTranslationTableName(parameter.Type.Name, true);
- if (exp.Arguments.Count == 2 && exp.Arguments.Last().HasValue())
- {
- tableName=Context.GetTranslationTableName(ExpressionTool.DynamicInvoke(exp.Arguments.Last())+"");
- }
- var joinString =string.Format(" {2} LEFT JOIN {1} {0} ",
- this.Context.GetTranslationColumnName(parameter.Name),
- tableName,
- null);
- if (this.Context?.SugarContext?.Context?.CurrentConnectionConfig?.DbType == DbType.SqlServer && this.Context?.SugarContext?.Context?.CurrentConnectionConfig?.MoreSettings?.IsWithNoLockSubquery == true)
- {
- joinString = $"{joinString} {SqlWith.NoLock} ";
- }
- var result = joinString+ "ON " + SubTools.GetMethodValue(Context, argExp, ResolveExpressType.WhereMultiple);
- //var selfParameterName = Context.GetTranslationColumnName((argExp as LambdaExpression).Parameters.First().Name) + UtilConstants.Dot;
- this.Context.JoinIndex++;
- new SubSelect() { Context = this.Context }.SetShortName(exp, "+");
- //result = result.Replace(selfParameterName, SubTools.GetSubReplace(this.Context));
- return result;
- }
- }
- }
|