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