1 write to m_commandParameters
System.Data.Entity (1)
System\Data\Mapping\FunctionImportMappingComposable.cs (1)
56
m_commandParameters
= functionImport.Parameters.Select(p => TypeHelpers.GetPrimitiveTypeUsageForScalar(p.TypeUsage).Parameter(p.Name)).ToArray();
7 references to m_commandParameters
System.Data.Entity (7)
System\Data\Mapping\FunctionImportMappingComposable.cs (7)
145
Debug.Assert(
m_commandParameters
.Length == targetIqtArguments.Count, "m_commandParameters.Length == targetIqtArguments.Count");
146
Dictionary<string, Node> viewArguments = new Dictionary<string, Node>(
m_commandParameters
.Length);
147
for (int i = 0; i <
m_commandParameters
.Length; ++i)
149
var commandParam = (DbParameterReferenceExpression)
m_commandParameters
[i];
252
Debug.Assert(this.FunctionImport.Parameters.Count ==
m_commandParameters
.Length, "this.FunctionImport.Parameters.Count == m_commandParameters.Length");
253
Debug.Assert(this.TargetFunction.Parameters.Count ==
m_commandParameters
.Length, "this.TargetFunction.Parameters.Count == m_commandParameters.Length");
258
yield return
m_commandParameters
[this.FunctionImport.Parameters.IndexOf(functionImportParameter)];