2 writes to _returnTypeList
System.Data.Entity (2)
System\Data\EntityModel\SchemaObjectModel\Function.cs (2)
566
clone.
_returnTypeList
= _returnTypeList;
745
this.
_returnTypeList
= new List<ReturnType>();
16 references to _returnTypeList
System.Data.Entity (16)
System\Data\EntityModel\SchemaObjectModel\Function.cs (14)
201
if (null !=
_returnTypeList
)
203
Debug.Assert(
_returnTypeList
.Count == 1, "Shouldn't use Type if there could be multiple return types");
204
return this.
_returnTypeList
[0].Type;
217
return null !=
_returnTypeList
? new ReadOnlyCollection<ReturnType>(
_returnTypeList
) : null;
403
if (null !=
_returnTypeList
)
405
foreach (ReturnType returnType in
_returnTypeList
)
424
if (_type != null &&
_returnTypeList
!= null)
431
if (this.
_returnTypeList
== null && this.Type == null)
521
if (
_returnTypeList
!= null)
523
foreach (ReturnType returnType in
_returnTypeList
)
566
clone._returnTypeList =
_returnTypeList
;
743
if (this.
_returnTypeList
== null)
747
this.
_returnTypeList
.Add(returnType);
System\Data\EntityModel\SchemaObjectModel\FunctionImportElement.cs (2)
138
if (
_returnTypeList
!= null)
140
foreach (ReturnType returnType in
_returnTypeList
)