Depuis aa
est l'objet qui peut être null, pouvez-vous vérifier aa == null
?
(aa
/ xx
pourraient être interchangeables (une faute de frappe dans la question); la question d'origine parle de xx
mais seulement définit aa
)
c'est à dire
select new {
AssetID = x.AssetID,
Status = aa == null ? (bool?)null : aa.Online; // a Nullable<bool>
}
ou si vous voulez la valeur par défaut est false
(pas null
):
select new {
AssetID = x.AssetID,
Status = aa == null ? false : aa.Online;
}
Mise à jour; en réponse à la downvote, je l'ai étudié plus... le fait est que c'est la bonne approche! Voici un exemple sur les Comptoirs:
using(var ctx = new DataClasses1DataContext())
{
ctx.Log = Console.Out;
var qry = from boss in ctx.Employees
join grunt in ctx.Employees
on boss.EmployeeID equals grunt.ReportsTo into tree
from tmp in tree.DefaultIfEmpty()
select new
{
ID = boss.EmployeeID,
Name = tmp == null ? "" : tmp.FirstName
};
foreach(var row in qry)
{
Console.WriteLine("{0}: {1}", row.ID, row.Name);
}
}
Et voici le TSQL - à peu près ce que nous voulons (il n'est pas ISNULL
, mais il est assez proche):
SELECT [t0].[EmployeeID] AS [ID],
(CASE
WHEN [t2].[test] IS NULL THEN CONVERT(NVarChar(10),@p0)
ELSE [t2].[FirstName]
END) AS [Name]
FROM [dbo].[Employees] AS [t0]
LEFT OUTER JOIN (
SELECT 1 AS [test], [t1].[FirstName], [t1].[ReportsTo]
FROM [dbo].[Employees] AS [t1]
) AS [t2] ON ([t0].[EmployeeID]) = [t2].[ReportsTo]
-- @p0: Input NVarChar (Size = 0; Prec = 0; Scale = 0) []
-- Context: SqlProvider(Sql2008) Model: AttributedMetaModel Build: 3.5.30729.1
CQFD?