Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试遵循一个示例,但我认为它是为旧版本编写的,因此我正在寻找与此等效的 umbraco 7:
List<PropertyType> types = PropertyType.GetAll().ToList();
Umbraco.Core.Models.PropertyType' 不包含'GetAll' 的定义 - 这是我得到的当前错误。
您可以使用新服务。使用 DataTypes - DataTypeService
var ds = ApplicationContext.Current.Services.DataTypeService; var dataTypes = ds.GetAllDataTypes();