ItemCollection.TryGetEntityContainer Method
Get an entity container based upon the strong name of the container.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | TryGetEntityContainer(String, Boolean, EntityContainer) | Returns an EntityContainer object by using the specified entity container name. If there is no entity container, this output parameter contains null; otherwise, it contains the first entity container. |
![]() | TryGetEntityContainer(String, EntityContainer) | Returns an EntityContainer object by using the specified entity container name. If there is no entity container, the output parameter contains null; otherwise, it contains the first entity container. |
ItemCollection.TryGetEntityContainer Method (String, Boolean, EntityContainer)
Returns an EntityContainer object by using the specified entity container name. If there is no entity container, this output parameter contains null; otherwise, it contains the first entity container.
public bool TryGetEntityContainer( string name, bool ignoreCase, out EntityContainer entityContainer )
Parameters
- name
-
Type:
System.String
The name of the entity container.
- ignoreCase
-
Type:
System.Boolean
true to perform the case-insensitive search; otherwise, false.
- entityContainer
-
Type:
System.Data.Entity.Core.Metadata.Edm.EntityContainer
When this method returns, it contains an EntityContainer object. If there is no entity container, this output parameter contains null; otherwise, it contains the first entity container.
Return Value
Type: System.Booleantrue if there is an entity container that matches the search criteria; otherwise, false.
ItemCollection.TryGetEntityContainer Method (String, EntityContainer)
Returns an EntityContainer object by using the specified entity container name. If there is no entity container, the output parameter contains null; otherwise, it contains the first entity container.
Parameters
- name
-
Type:
System.String
The name of the entity container.
- entityContainer
-
Type:
System.Data.Entity.Core.Metadata.Edm.EntityContainer
When this method returns, it contains an EntityContainer object. If there is no entity container, this output parameter contains null; otherwise, it contains the first entity container.
Return Value
Type: System.Booleantrue if there is an entity container that matches the search criteria; otherwise, false.