gpt4 book ai didi

c# - 使用 LinqPad 将字符串转换为 Guid

转载 作者:可可西里 更新时间:2023-11-01 03:13:58 24 4
gpt4 key购买 nike

当我在 LinqPad 中运行时

var ProductIds = from p in Products 
where p.Id = "F1FE990C-4525-4BFE-9E2C-A7AFFF0DDA1F"
select p;

ProductIds.Dump();

它给了我

Cannot implicitly convert type 'string' to 'System.Guid'

我只是不知道如何将其正确转换为我猜的 GUId

最佳答案

尝试使用 Guid.Parse(string guid) 静态方法。

var ProductIds = from p in Products 
where p.Id == Guid.Parse("F1FE990C-4525-4BFE-9E2C-A7AFFF0DDA1F")
select p;

ProductIds.Dump();

关于c# - 使用 LinqPad 将字符串转换为 Guid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8067628/

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