class MetadataCache extends AnyRef
Simple metadata cache for CRM metadata.
- Alphabetic
- By Inheritance
- MetadataCache
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new MetadataCache(dynclient: DynamicsClient, LCID: Int = 1033)(implicit F: MonadError[IO, Throwable], ec: ExecutionContext)
Value Members
- def attributeMetadataId(entitySetName: String, attribute: String): IO[Option[String]]
-
def
attributeType(ename: String, aname: String): IO[Option[String]]
Given an entity set name and an attribute name, return the attribute type.
Given an entity set name and an attribute name, return the attribute type. The AttributeType is a simple string and is not AttributeTypeName which typically places a suffix "Type" at the end of the type name.
- def baseAttributes(entityName: String): IO[Seq[AttributeMetadata]]
- def connectionRole(roleName: String): IO[Option[ConnectionRole]]
- def connectionRoleCategories(): IO[Seq[OptionValue]]
- def connectionRoles(): IO[Seq[ConnectionRole]]
- def connectionRolesForCategory(cname: String, ignoreCase: Boolean = false): IO[Seq[ConnectionRole]]
- def entityByName(entityName: String): IO[Option[EntityDefinition]]
- def entityBySetName(entitySetName: String): IO[Option[EntityDefinition]]
- def entityDefinitions(): IO[Seq[EntityDefinition]]
- def entityName(entitySetName: String): IO[Option[String]]
- def entitySetName(entityName: String): IO[Option[String]]
- def globalOptionSet(name: String): IO[Seq[OptionValue]]
- def globalOptionSets(): IO[Seq[OptionSetMetadata]]
-
def
hasAttributes(entityName: String, anames: Seq[String]): IO[Boolean]
Return true if all the attributes on entity exist.
- def objectTypeCode(entityName: String): IO[Option[Int]]
-
def
optionValues(entitySet: String, attribute: String): IO[Seq[OptionValue]]
Obtain option values give an entity and attribute combination.
Obtain option values give an entity and attribute combination.
- To do
Should we signal an error if either entiytSet or attribute is not found?
- def pk(entityName: String): IO[Option[String]]
Deprecated Value Members
-
def
entityDescription(entitySet: String): IO[Option[EntityDefinition]]
- Deprecated
Use entitySetName