C# Class Rock.Model.TaggedItemService

MetricValue POCO Service class
Mostrar archivo Open project: NewSpring/Rock Class Usage Examples

Public Methods

Method Description
Get ( int entityTypeId, string entityQualifierColumn, string entityQualifierValue, int ownerId, System.Guid entityGuid ) : IQueryable

Returns a list of TaggedItems by EntityType, QualifierColumn, QualifierValue, OwnerId and EntityGuid.

Get ( int tagId, System.Guid entityGuid ) : TaggedItem

Returns a Rock.Model.TaggedItem by TagId and EntityGuid.

Method Details

Get() public method

Returns a list of TaggedItems by EntityType, QualifierColumn, QualifierValue, OwnerId and EntityGuid.
public Get ( int entityTypeId, string entityQualifierColumn, string entityQualifierValue, int ownerId, System.Guid entityGuid ) : IQueryable
entityTypeId int A representing the EntityTypeID of an of the .
entityQualifierColumn string A representing the EntityQualifierColumn of the that the /// belongs to. If a qualifier column was not used, this value can be null.
entityQualifierValue string A representing the EntityQualifierValue of the that the /// belongs to. If a qualifier value was not used, this value can be null.
ownerId int A representing the PersonId of the who is the owner of the that /// the belongs to.
entityGuid System.Guid A representing the entity Guid of the
return IQueryable

Get() public method

Returns a Rock.Model.TaggedItem by TagId and EntityGuid.
public Get ( int tagId, System.Guid entityGuid ) : TaggedItem
tagId int A representing the TagId of the that the belongs to.
entityGuid System.Guid A representing the Guid identifier of an TaggedItem's Entity object.
return TaggedItem