本文介绍了转换为值类型'system.boolean'失败,因为实现值为null。结果类型的泛型参数或查询必须使用可空类型。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
public static void GetByid(long id)
{
using (var db = new ClientDbContext(DALContext.LoyaltyGenieWebDbConnectionString))
{
List<PromotionCategories> promotioncategories=new List<PromotionCategories>();
//List<PromotionCategories> promotioncategories = db.PromotionCategories.Where(t => t.PromotionsId == id).ToList();
var p = (from s in db.PromotionCategories
join x in db.QualifyOption on s.Id equals x.PromotionCategoryId
into t from cat in t.DefaultIfEmpty()
where s.PromotionsId == id
select new
{
s.Id,
s.PromotionsId,
s.NumberofProducts,
s.ActiveStatus,
s.CreatedDate,
s.ModifiedDate,
s.CreatedBy,
s.ModifiedBy,
s.PromotionCategory,
s.CategoryId,
s.ProductId,
cat.IsOption,
cat.OptionId,
cat.PromotionCategoryId
}).ToList();
}
}
。
请帮助我。
谢谢。
我的尝试:
转换为值类型'System.Boolean'失败,因为具体化值为null。结果类型的泛型参数或查询必须使用可空类型。
.
Please help me.
thank you.
What I have tried:
The cast to value type 'System.Boolean' failed because the materialized value is null. Either the result type's generic parameter or the query must use a nullable type.
推荐答案
这篇关于转换为值类型'system.boolean'失败,因为实现值为null。结果类型的泛型参数或查询必须使用可空类型。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!