SaaS CMS has officially launched! Learn more now.

Interface IEntityObjectFactory

Represent entity object factory interface.

Namespace: Mediachase.BusinessFoundation.Data.Business
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 11.8.3
Syntax
public interface IEntityObjectFactory

Methods

CanCreate(String)

Determines whether this instance can create the specified meta class.

Declaration
bool CanCreate(string metaClassName)
Parameters
Type Name Description
System.String metaClassName

The meta class.

Returns
Type Description
System.Boolean

true if this instance can create the specified meta class; otherwise, false.

CreateInstance(String)

Creates the instance.

Declaration
EntityObject CreateInstance(string metaClassName)
Parameters
Type Name Description
System.String metaClassName

The name of the meta class.

Returns
Type Description
EntityObject