private IEdmType ComputeDefinition()
		{
			IEdmType edmType = this.schema.FindType(this.reference.FullName);
			IEdmType edmType1 = edmType;
			IEdmType unresolvedType = edmType1;
			if (edmType1 == null)
			{
				string str = this.schema.ReplaceAlias(this.reference.FullName);
				string fullName = str;
				if (str == null)
				{
					fullName = this.reference.FullName;
				}
				unresolvedType = new UnresolvedType(fullName, base.Location);
			}
			return unresolvedType;
		}
Ejemplo n.º 2
0
        private IEdmType ComputeDefinition()
        {
            IEdmType edmType        = this.schema.FindType(this.reference.FullName);
            IEdmType edmType1       = edmType;
            IEdmType unresolvedType = edmType1;

            if (edmType1 == null)
            {
                string str      = this.schema.ReplaceAlias(this.reference.FullName);
                string fullName = str;
                if (str == null)
                {
                    fullName = this.reference.FullName;
                }
                unresolvedType = new UnresolvedType(fullName, base.Location);
            }
            return(unresolvedType);
        }