gpt4 book ai didi

c# - 如何在 linq DataSource 中插入空记录?

转载 作者:太空宇宙 更新时间:2023-11-03 14:26:37 26 4
gpt4 key购买 nike

我的数据库(SQL)中有一个“信息”表,它有 3 个字段:ID、日期、描述
我想在 date1 和 date2 之间的 gridview 中显示此数据,但如果 date3 在 date1 和 date2 之间,我想显示 date3 的空记录,但我的表中没有 Date = date3 的数据,我该怎么做C# 和 Linq?

最佳答案

VB中的例子

Dim varListado As List(Of Information) = (From varNNN In varEntidades.Information Where varNNN.ID > 0 Select varNNN).ToList

If addNew = True Then
Dim varNew As New Information
varNew.ID = 0
varNew.Description = "New Record Added"
varNew.Date = Now
varListado.Insert(0, varNew)
End If

关于c# - 如何在 linq DataSource 中插入空记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3802120/

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