Parent_ObjectiveID
और identity
int?
डेटाटाइप में शून्य प्रकारों के साथ समस्याएं हैं। मेरे कार्यक्रम में एक वस्तु वापस करनी चाहिए, लेकिन यह एक त्रुटि देता है: Sequence contains no elements
।LINQ फ़ंक्शन
int? identity = null;
Objective currentObjective = (from p in cd.Objective
where p.Parent_ObjectiveID == identity
select p).Single();
हालांकि, यदि मैं पहचान चर को शून्य में बदलता हूं। यह काम करता है, लेकिन मुझे समझ में नहीं आता है।
currentObjective = (from p in cd.Objective
where p.Parent_ObjectiveID == null
select p).Single();
क्या हो रहा है?
अद्यतन 1:
मैंने यह किया है:
if (identity == null)
{
currentObjective = (from p in cd.Objective
where p.Parent_ObjectiveID == null
select p).Single();
}
else
{
currentObjective = (from p in cd.Objective
where p.Parent_ObjectiveID == identity
select p).Single();
}
लेकिन मैं नहीं वास्तव में यह पसंद है।
क्या आप लिंक-टू-एसक्यूएल या लिंक-टू-ऑब्जेक्ट्स के बारे में बात कर रहे हैं? मैंने बस लिंक-टू-ऑब्जेक्ट्स के साथ इसका परीक्षण किया, और यह मेरे लिए काम करता है। (.NET 4.0) – magnattic
@atticae Linq से SQL –
आपने इसे 'linq-to-objects' के साथ क्यों टैग किया? ;) – magnattic