internal ExecutionBuildResult BuildExecution(Expression expression, LambdaExpression projection = null, object[] placeholderValues = null) { ProjectorExpressionCacheInfo cacheInfo; var skipFormatResultSubstitution = false; var projectionExpression = expression as SqlProjectionExpression ?? (SqlProjectionExpression)Bind(this.DataAccessModel, this.SqlDatabaseContext.SqlDataTypeProvider, expression); var key = new ExpressionCacheKey(projectionExpression, projection); if (!this.SqlDatabaseContext.projectionExpressionCache.TryGetValue(key, out cacheInfo)) { if (expression != projectionExpression) { placeholderValues = SqlConstantPlaceholderValuesCollector.CollectValues(projectionExpression); projectionExpression = (SqlProjectionExpression)Optimize(this.DataAccessModel, this.SqlDatabaseContext, projectionExpression); skipFormatResultSubstitution = true; } var oldCache = this.SqlDatabaseContext.projectionExpressionCache; var formatResult = this.SqlDatabaseContext.SqlQueryFormatterManager.Format(projectionExpression); SqlQueryFormatResult formatResultForCache = null; if (formatResult.Cacheable) { var parameters = formatResult.ParameterValues.ToList(); foreach (var index in formatResult.ParameterIndexToPlaceholderIndexes.Keys) { var value = parameters[index]; parameters[index] = value.ChangeValue(value.Type.GetDefaultValue()); } formatResultForCache = formatResult.ChangeParameterValues(parameters); } else { if (!skipFormatResultSubstitution) { // Edge case where inner projection from ProjectionBuilder can't be cached (related DeflatedPredicated with a complex predicate) skipFormatResultSubstitution = true; projectionExpression = (SqlProjectionExpression)SqlConstantPlaceholderReplacer.Replace(projectionExpression, placeholderValues); formatResult = this.SqlDatabaseContext.SqlQueryFormatterManager.Format(projectionExpression); } } cacheInfo = new ProjectorExpressionCacheInfo(projectionExpression, formatResultForCache); if (projection == null) { var columns = projectionExpression.Select.Columns.Select(c => c.Name); projection = ProjectionBuilder.Build(this.DataAccessModel, this.SqlDatabaseContext, this, projectionExpression.Projector, new ProjectionBuilderScope(columns.ToArray())); } BuildProjector(projection, projectionExpression.Aggregator, out cacheInfo.projector, out cacheInfo.asyncProjector); if (this.SqlDatabaseContext.projectionExpressionCache.Count >= ProjectorCacheMaxLimit) { ProjectionExpressionCacheLogger.Debug(() => $"ProjectionExpressionCache has been flushed because it overflowed with a size of {ProjectionExpressionCacheMaxLimit}\n\nProjectionExpression: {projectionExpression}\n\nAt: {new StackTrace()}"); var newCache = new Dictionary <ExpressionCacheKey, ProjectorExpressionCacheInfo>(ProjectorCacheMaxLimit, ExpressionCacheKeyEqualityComparer.Default); foreach (var value in oldCache.Take(oldCache.Count / 3)) { newCache[value.Key] = value.Value; } newCache[key] = cacheInfo; this.SqlDatabaseContext.projectionExpressionCache = newCache; } else { var newCache = new Dictionary <ExpressionCacheKey, ProjectorExpressionCacheInfo>(oldCache, ExpressionCacheKeyEqualityComparer.Default) { [key] = cacheInfo }; this.SqlDatabaseContext.projectionExpressionCache = newCache; } ProjectionCacheLogger.Debug(() => $"Cached projection for query:\n{GetQueryText(formatResult)}\n\nProjector:\n{cacheInfo.projector}"); ProjectionCacheLogger.Debug(() => $"Projector Cache Size: {this.SqlDatabaseContext.projectionExpressionCache.Count}"); cacheInfo.formatResult = formatResult; } else { ProjectionCacheLogger.Debug(() => $"Cache hit for query:\n{GetQueryText(cacheInfo.formatResult)}"); } if (placeholderValues == null) { placeholderValues = SqlConstantPlaceholderValuesCollector.CollectValues(projectionExpression); } if (cacheInfo.formatResult == null) { var projector = SqlConstantPlaceholderReplacer.Replace(cacheInfo.projectionExpression, placeholderValues); var optimizedProjector = Optimize(this.DataAccessModel, this.SqlDatabaseContext, projector); cacheInfo.formatResult = this.SqlDatabaseContext.SqlQueryFormatterManager.Format(optimizedProjector); } else if (!skipFormatResultSubstitution) { var parameters = cacheInfo.formatResult.ParameterValues.ToList(); foreach (var indexes in cacheInfo.formatResult.ParameterIndexToPlaceholderIndexes) { var index = indexes.Key; var placeholderIndex = indexes.Value; parameters[index] = parameters[index].ChangeValue(placeholderValues[placeholderIndex]); } cacheInfo.formatResult = cacheInfo.formatResult.ChangeParameterValues(parameters); } return(new ExecutionBuildResult(this, cacheInfo.formatResult, cacheInfo.projector, cacheInfo.asyncProjector, placeholderValues)); }
internal ExecutionBuildResult BuildExecution(Expression expression, LambdaExpression projection = null, object[] placeholderValues = null, Expression <Func <IDataReader, object[]> > rootKeys = null) { var skipFormatResultSubstitution = false; var projectionExpression = expression as SqlProjectionExpression ?? (SqlProjectionExpression)Bind(this.DataAccessModel, this.SqlDatabaseContext.SqlDataTypeProvider, expression); var foundCachedProjection = false; var key = new ExpressionCacheKey(projectionExpression, projection); if (!this.SqlDatabaseContext.projectionExpressionCache.TryGetValue(key, out var cacheInfo)) { if (expression != projectionExpression) { placeholderValues = SqlConstantPlaceholderValuesCollector.CollectValues(projectionExpression); projectionExpression = (SqlProjectionExpression)Optimize(this.DataAccessModel, projectionExpression); skipFormatResultSubstitution = true; } var formatResult = this.SqlDatabaseContext.SqlQueryFormatterManager.Format(projectionExpression, SqlQueryFormatterOptions.Default); SqlQueryFormatResult formatResultForCache = null; if (formatResult.Cacheable) { var parameters = formatResult.ParameterValues.ToList(); foreach (var index in formatResult.ParameterIndexToPlaceholderIndexes.Keys) { var value = parameters[index]; parameters[index] = value.ChangeValue(value.Type.GetDefaultValue()); } formatResultForCache = formatResult.ChangeParameterValues(parameters); } else { if (!skipFormatResultSubstitution) { // Edge case where inner projection from ProjectionBuilder can't be cached (related DeflatedPredicated with a complex predicate) skipFormatResultSubstitution = true; projectionExpression = (SqlProjectionExpression)SqlConstantPlaceholderReplacer.Replace(projectionExpression, placeholderValues); formatResult = this.SqlDatabaseContext.SqlQueryFormatterManager.Format(projectionExpression); } } cacheInfo = new ProjectorExpressionCacheInfo(projectionExpression, formatResultForCache); var columns = projectionExpression.Select.Columns.Select(c => c.Name).ToArray(); if (projection == null) { projection = ProjectionBuilder.Build(this.DataAccessModel, this.SqlDatabaseContext, this, projectionExpression.Projector, new ProjectionBuilderScope(columns), out rootKeys); } this.BuildProjector(projection, projectionExpression.Aggregator, rootKeys, out cacheInfo.projector, out cacheInfo.asyncProjector); this.SqlDatabaseContext.projectionExpressionCache = this.SqlDatabaseContext.projectionExpressionCache.Clone(key, cacheInfo, "ProjectionExpression", this.ProjectionExpressionCacheMaxLimit, ProjectionCacheLogger, c => c.projectionExpression.ToString()); ProjectionCacheLogger.Debug(() => $"Cached projection for query:\n{this.GetQueryText(formatResult, this.GetParamName)}\n\nProjector:\n{cacheInfo.projector}"); ProjectionCacheLogger.Debug(() => $"Projector Cache Size: {this.SqlDatabaseContext.projectionExpressionCache.Count}"); cacheInfo.formatResult = formatResult; } else { foundCachedProjection = true; } if (placeholderValues == null) { placeholderValues = SqlConstantPlaceholderValuesCollector.CollectValues(projectionExpression); } if (cacheInfo.formatResult == null) { var projector = SqlConstantPlaceholderReplacer.Replace(cacheInfo.projectionExpression, placeholderValues); var optimizedProjector = Optimize(this.DataAccessModel, projector); cacheInfo.formatResult = this.SqlDatabaseContext.SqlQueryFormatterManager.Format(optimizedProjector); } else if (!skipFormatResultSubstitution) { var parameters = cacheInfo.formatResult.ParameterValues.ToList(); foreach (var indexes in cacheInfo.formatResult.ParameterIndexToPlaceholderIndexes) { var index = indexes.Key; var placeholderIndex = indexes.Value; parameters[index] = parameters[index].ChangeValue(placeholderValues[placeholderIndex]); } cacheInfo.formatResult = cacheInfo.formatResult.ChangeParameterValues(parameters); } if (foundCachedProjection) { ProjectionCacheLogger.Debug(() => $"Cache hit for query:\n{this.GetQueryText(cacheInfo.formatResult, this.GetParamName)}"); } return(new ExecutionBuildResult(this, cacheInfo.formatResult, cacheInfo.projector, cacheInfo.asyncProjector, placeholderValues)); }