我有这个Linq To SQL
查询,它从database
.The CustCategory 中获取客户类别。这里是查询。
public IList<string> GetAccountType()
{
using (var db = new DataClasses1DataContext())
{
var acctype = db.mem_types.Select(account=>account.CustCategory).Distinct().ToList();
if (acctype != null)
{
return acctype;
}
}
}
目前我收到一个错误,Not all code paths return a value.
如果我总是确定数据库中存在该值,那么我是否需要检查null
,如果我需要检查,null
那么我该如何处理。谁能帮我这个。欢迎任何建议。