gpt4 book ai didi

c# - 带有可选参数的方法

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

我有一个方法有四个参数,我用它来过滤我的数据,有时填充 4 个参数,有时只填充三个或两个或一个,所以我一直在寻找一种方法来只获取必要的参数值.例如,如果用户只输入一个参数,如 startDate 我想恢复所有具有该日期的数据而不将其他参数作为 null,但不应该考虑它们,我的方法搜索数据它有正确的 StartDate 和其他参数 null 我不想这样做

internal static List<Inconsistence> FilterList(DateTime? StartDate, DateTime? EnDate, decimal? State, decimal? Type)
{
using (Model m = new Model())
{
return m.DBContext
.InconsistencyDebtors
.Join(m.DBContext.Inconsistencies,
u => u.InconsistencyId,
uir => uir.InconsistencyId,
(u, uir) => new { u, uir })
.Join(m.DBContext.InconsistencyDebtorDocuments,
r => r.uir.InconsistencyId,
ro => ro.InconsistencyId,
(r, ro) => new { r, ro })
.Where(g =>
g.r.uir.InconsistencyStateId == State &&
g.r.uir.InconsistencyTypeId == Type &&
g.r.uir.InsDate >= StartDate &&
EnDate >= g.r.uir.InsDate)
.Select(g => new Inconsistence()
{
ParticipantCode = g.r.u.ParticipantCode,
DebtorId = g.ro.DebtorId,
InconsistencyTypeId = g.r.uir.InconsistencyTypeId,
InconsistencyStateId = g.r.uir.InconsistencyStateId,
DateInconsistence = g.r.uir.InsDate
})
.ToList();
}
}

最佳答案

选项 1:重载。创建 4 个方法,每个方法都有不同的签名,调用“main”方法,例如具有完整参数的方法。该调用带有一些默认参数。

internal static List<Inconsistence> FilterList(DateTime? StartDate, DateTime? EnDate, decimal? State)
{
return FilterList(StartDate, EnDate, State, null); // Call overloaded method with Type = null
}

internal static List<Inconsistence> FilterList(DateTime? StartDate, DateTime? EnDate, decimal? State, decimal? Type)

选项 2:默认值你可以给你的方法参数一个默认值。只有最后一个参数可以有默认值。看起来像这样

internal static List<Inconsistence> FilterList(DateTime? StartDate, DateTime? EnDate, decimal? State, decimal? Type = null)

Type 参数是可选的。如果未在调用中指定,它将具有分配的默认值。在这种情况下,它是 null

关于c# - 带有可选参数的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29923176/

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