ASP.NET Web API:可选的Guid参数
本文关键字:Guid 参数 NET Web API ASP | 更新日期: 2023-09-27 18:28:24
我有一个带有Get操作的ApiController,如下所示:
public IEnumerable<Note> Get(Guid userId, Guid tagId)
{
var userNotes = _repository.Get(x => x.UserId == userId);
var tagedNotes = _repository.Get(x => x.TagId == tagId);
return userNotes.Union(tagedNotes).Distinct();
}
我希望以下请求针对此操作:
- http://{somedomain}/api/notes?userId={Guid}&tagId={Guid}
- http://{somedomain}/api/notes?userId={Guid}
- http://{somedomain}/api/notes?tagId={Guid}
我该怎么做?
UPDATE:请注意,api控制器不应该有另一个没有参数的GET方法,或者您应该使用带有一个可选参数的action。
您需要使用Nullable类型(IIRC,它可能与默认值(Guid.Empty
)一起使用
public IEnumerable<Note> Get(Guid? userId = null, Guid? tagId = null)
{
var userNotes = userId.HasValue ? _repository.Get(x => x.UserId == userId.Value) : new List<Note>();
var tagNotes = tagId.HasValue ? _repository.Get(x => x.TagId == tagId.Value) : new List<Note>();
return userNotes.Union(tagNotes).Distinct();
}