10 references to CreateSoftCastOp
System.Data.Entity (10)
System\Data\Mapping\FunctionImportMappingComposable.cs (2)
132Node castNode = itree.CreateNode(itree.CreateSoftCastOp(expectedElementType), varRefNode); 158targetIqtCommand.CreateSoftCastOp(TypeHelpers.CreateEnumUnderlyingTypeUsage(argumentNode.Op.Type)),
System\Data\Query\InternalTrees\Command.cs (2)
1780arg0 = this.CreateNode(this.CreateSoftCastOp(commonType), arg0); 1784arg1 = this.CreateNode(this.CreateSoftCastOp(commonType), arg1);
System\Data\Query\InternalTrees\OpCopier.cs (1)
569return CopyDefault(m_destCmd.CreateSoftCastOp(op.Type), n);
System\Data\Query\PlanCompiler\AggregatePushdown.cs (1)
371newSoftCastOp = command.CreateSoftCastOp(TypeHelpers.GetEdmType<CollectionType>(softCastOp.Type).TypeUsage);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
1151Node castNode = _iqtCommand.CreateNode(_iqtCommand.CreateSoftCastOp(targetType), varRefNode); 1169SoftCastOp castOp = _iqtCommand.CreateSoftCastOp(targetType);
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (1)
379Node newNode = m_command.CreateNode(m_command.CreateSoftCastOp(targetType), node);
System\Data\Query\PlanCompiler\Normalizer.cs (1)
191unnestVarRefNode = m_command.CreateNode(m_command.CreateSoftCastOp(softCastType), unnestVarRefNode);