ItemCollection.TryGetEntityContainer Method

 

Get an entity container based upon the strong name of the container.

Namespace:   System.Data.Entity.Core.Metadata.Edm
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubmethodTryGetEntityContainer(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.

System_CAPS_pubmethodTryGetEntityContainer(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.Boolean

true 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.

public bool TryGetEntityContainer(
	string name,
	out EntityContainer entityContainer
)

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.Boolean

true if there is an entity container that matches the search criteria; otherwise, false.