「追加日」と「変更日」の2つの列があります。
すべての製品を変更日で注文したいのですが、null になる可能性があるため、その場合は日付を追加したいと考えています。
var q = from c in db.Products
where c.UserID == UserID
orderby c.DateModified ?? c.DateAdded descending
select
new ManageProducts
{
ID = c.ID,
Image = c.Photo.PhotoFile,
Name = c.Name,
DateAdded = (DateTime) c.DateModified ?? c.DateAdded
};
これは私にエラーを表示します
DateAdded = (DateTime) c.DateModified ?? c.DateAdded