我刚刚更改了我的代码,现在它将一些数据存储在枚举而不是 SQL Server 表中。
这是枚举:
public enum ContentTypes : int
{
Article = 0,
Menu = 1,
ContentBlock = 3
}
我正在运行以下代码:
var contentTypes =
(
from contentType in this._contentTypeService.GetContentTypes()
select new
{
id = contentType.ContentTypeId,
name = contentType.Name
}
);
我怎样才能改变它,而不是从内容服务中获取数据,它只是将枚举查询到 contentTypes 的数据?