3 writes to _type
System.Data.Entity (3)
System\Data\EntityModel\SchemaObjectModel\Function.cs (2)
400Schema.ResolveTypeName(this, UnresolvedReturnType, out _type); 565clone._type = _type;
System\Data\EntityModel\SchemaObjectModel\ModelFunction.cs (1)
120if (Schema.ResolveTypeName(this, UnresolvedReturnType, out _type))
12 references to _type
System.Data.Entity (12)
System\Data\EntityModel\SchemaObjectModel\Function.cs (6)
208return this._type; 424if (_type != null && _returnTypeList != null) 512if (_type != null && (_type is ScalarType == false || _returnTypeCollectionKind != Metadata.Edm.CollectionKind.None)) 517System.Data.Entity.Strings.FunctionWithNonPrimitiveTypeNotSupported(GetTypeNameForErrorMessage(_type, _returnTypeCollectionKind, _isRefType), this.FQName)); 565clone._type = _type;
System\Data\EntityModel\SchemaObjectModel\FunctionImportElement.cs (1)
136ValidateFunctionImportReturnType(this, _type, this.CollectionKind, _entitySet, _entitySetPathDefined);
System\Data\EntityModel\SchemaObjectModel\ModelFunction.cs (5)
42return this._type; 122if (_type is ScalarType) 124_typeUsageBuilder.ValidateAndSetTypeUsage(_type as ScalarType, false); 156ValidationHelper.ValidateFacets(this, _type, _typeUsageBuilder); 160ValidationHelper.ValidateRefType(this, _type);