gpt4 book ai didi

c# - 类似于 Entity Framework 中的 "Coalesce"的表达式

转载 作者:太空狗 更新时间:2023-10-29 23:31:19 25 4
gpt4 key购买 nike

Entity Framework c# 中与以下代码类似的查询是什么。

SELECT StudentId,Coalesce(s.FName + ' ' + s.MName + ' ' + s.LName,
s.FName + ' ' + s.MName,
s.FName) AS FullName
FROM Student s
WHERE s.StudentId = 'S101';

提前致谢。

最佳答案

看看null-coalescing operator

例如

string text1 = null;
string result = text1 == null ? "default" : text1 ;

你可以做到

string result = text1 ?? "default";

关于c# - 类似于 Entity Framework 中的 "Coalesce"的表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22630182/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com