次のコードがあります。しかし、それは例外を引き起こします。
using (var context = new blogEntities())
{
var listOfComments = context.Comments
.OrderByDescending(c => c.CreateDate)
.Where(c => c.CreateDate > fromDate)
.Select(c => new NewsFeedData()
{
ArticleID = c.ArticleID,
CommentID = c.CommentID,
Text = c.CommentText,
Author = c.Author,
CreateDate = c.CreateDate,
Type = 'C'
}).ToList();
}
私はenumを試しましたが、いくつかの問題があります。私が望むものを達成するための最良の方法は何ですか? Type に定数を代入したい