10 references to TryGetItem
System.Data.Entity (9)
System\Data\Mapping\DefaultObjectMappingItemCollection.cs (4)
88
if (!m_edmCollection.
TryGetItem
<EdmType>(identity, true, out cdmType))
105
m_edmCollection.
TryGetItem
<EdmType>(identity, ignoreCase, out cdmType))
116
if (!m_objectCollection.
TryGetItem
<EdmType>(identity, true, out clrType))
133
m_objectCollection.
TryGetItem
<EdmType>(identity, ignoreCase, out clrType))
System\Data\Mapping\StorageMappingItemCollection.cs (1)
328
return
TryGetItem
<Map>(identity, ignoreCase, out map);
System\Data\Metadata\Edm\ItemCollection.cs (2)
147
return this.
TryGetItem
<T>(identity, false /*ignorecase*/, out item);
182
if (
TryGetItem
<T>(identity, ignoreCase, out item))
System\Data\Metadata\MetadataWorkspace.cs (2)
496
return (null != collection) && collection.
TryGetItem
<T>(identity, false /*ignoreCase*/, out item);
533
return (null != collection) && collection.
TryGetItem
<T>(identity, ignoreCase, out item);
System.Data.Entity.Design (1)
System\Data\Entity\Design\EntityStoreSchemaGenerator\EntityStoreSchemaGenerator.LoadMethodSessionState.cs (1)
143
var success = ItemCollection.
TryGetItem
<PrimitiveType>(StoreNamespace + "." + typeName, false, out primitiveType);