November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
The Site system has been removed and replaces with the Category. Content is separated by assigning categories instead of associating with sites.
Handler classes are now singletons instead of static objects. All methods for loading and saving entities have been moved to the respective handler classes.
EPiServer Community 4 is integrated with the full text search functionality included in version 6.1 of EPiServer Framework. See the documentation for the service and client parts of the Full Text Search functionality for more information.
All Entities in EPiServer Community now have their own feeds that can be subscribed to and external feeds can be syndicated to EPiServer Community blogs.
Publish blog entries using any MetaWeblog-compatible blog appliation, for example Live Writer.
Use your OpenID to log into EPiServer Community or have EPiServer Community act as OpenID provider.
The name and type of the properties that are common to all Entities have been defined in the new IContent interface.
Allows for owner relationships between entities. An entity can only have one owner, owned entities are removed when the owner is removed.
All entity types now have a common set of possible states: Pending, Approved and Removed. The new status system makes it possible to moderate all content on the site and set up different rules regarding which content that needs to be approved by a moderator before shown on the site.
Entities now have globally unique identifiers in addition to the integer-based ID. The GUIDs are suitable when you wish to persist or pass references to entities outside of the Community application. To load an entity from its GUID you go via the intermediate EntityReference object:
Guid entryGuid = entry.UniqueID;
EntityReference entryReference = EntityProviderHandler.Instance.GetEntityReference(entryGuid);
entry = entryReference.GetEntity() as Entry;