ItemCollection.TryGetType Method
Searches for a type metadata.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | TryGetType(String, String, Boolean, EdmType) | Returns an EdmType object by using the specified type name and the namespace name from this item collection. |
![]() | TryGetType(String, String, EdmType) | Returns an EdmType object by using the specified type name and the namespace name from this item collection. |
ItemCollection.TryGetType Method (String, String, Boolean, EdmType)
Returns an EdmType object by using the specified type name and the namespace name from this item collection.
public bool TryGetType( string name, string namespaceName, bool ignoreCase, out EdmType type )
Parameters
- name
-
Type:
System.String
The name of the type.
- namespaceName
-
Type:
System.String
The namespace of the type.
- ignoreCase
-
Type:
System.Boolean
true to perform the case-insensitive search; otherwise, false.
- type
-
Type:
System.Data.Entity.Core.Metadata.Edm.EdmType
When this method returns, this output parameter contains an EdmType object. If there is no type with the specified name and namespace name in this item collection, this output parameter contains null.
Return Value
Type: System.Booleantrue if there is a type that matches the search criteria; otherwise, false.
ItemCollection.TryGetType Method (String, String, EdmType)
Returns an EdmType object by using the specified type name and the namespace name from this item collection.
Parameters
- name
-
Type:
System.String
The name of the type.
- namespaceName
-
Type:
System.String
The namespace of the type.
- type
-
Type:
System.Data.Entity.Core.Metadata.Edm.EdmType
When this method returns, this output parameter contains an EdmType object. If there is no type with the specified name and namespace name in this item collection, this output parameter contains null.
Return Value
Type: System.Booleantrue if there is a type that matches the search criteria; otherwise, false.