为了账号安全,请及时绑定邮箱和手机立即绑定

如果列之一为空,则加入返回空

如果列之一为空,则加入返回空

C#
繁星淼淼 2021-08-22 15:44:52
我有两张桌子,Parts和Blob。db.PartsId   name   x    y   z  partimageid-----------------------------------1    bolt   30   40  5       4 2    screw  33   4   6     nulldb.blobId   content      name------------------------------4    fsbfvb       picture.png如何获取带有图像内容的零件详细信息?目前我这样做:public async Task<IHttpActionResult> GetPart(int id){        var result = from part in db.Parts                 join image in db.Blob on part.PartImageId equals image.Id                 where part.Id == id                 select new { part, image.Content};    return Ok(result);}它正在工作,但如果图像不存在 - 部分也为空。我在这里做错了什么?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 155 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信