gpt4 book ai didi

.net - linq 查询中的 String.Format

转载 作者:行者123 更新时间:2023-12-01 11:57:05 25 4
gpt4 key购买 nike

我遇到了一个奇怪的问题。我有一个看起来像这样的 CashGameGeneralViewModel

public class CashGameGeneralViewModel
{
public string Limit { get; set; }
public int HandsPlayed { get; set; }

public float AmountWon { get; set; }
}

这是应该返回某个玩家玩过的所有手牌的方法:

public List<CashGameGeneralViewModel> GetAllHands(string playerToFind)
{
HoldemHandContext db = new HoldemHandContext();
int playerId = GetPlayerId(playerToFind);
var holdemHandResult = (from phh in db.PlayersInHoldemHands
from hh in db.HoldemHands
where hh.Id == phh.HandPlayed && phh.PlayerId == playerId
select new CashGameGeneralViewModel()
{
Limit = //"some text",
String.Format("{0:0.00}", hh.SBlindAmount) + "/" +
String.Format("{0:0.00}", hh.BBlindAmount),
HandsPlayed = db.HoldemHands.Distinct().Count(),
AmountWon = 0
}
).ToList();

return holdemHandResult;
}

public int GetPlayerId(string playerToFind)
{
HoldemHandContext db = new HoldemHandContext();
int playerId = (from p in db.Players
where p.ScreenName == playerToFind
select p.Id).FirstOrDefault();

return playerId;
}

现在的问题是

Limit = //"some text",
String.Format("{0:0.00}", hh.SBlindAmount) + "/" +
String.Format("{0:0.00}", hh.BBlindAmount)

部分。 hh.SBlindAmounthh.BBlindAmount 是浮点值。我想使用 String.Format 因为 0.10 被缩短为 0.1 并且我得到了我想要的字符串格式。但我收到一个异常(exception):

'The invocation of the constructor on type 'PokerRecord.View.CashGameGeneralUC' that matches the specified binding constraints threw an exception.' Line number '60' and line position '18'.

当我删除 string.format 并放入一些“常规”字符串时,一切正常......有人知道为什么吗?

最佳答案

我认为对于您正在尝试做的事情(将特定的 float 格式化为字符串),您需要 .ToString() 的重载,它允许您提供格式提供程序。

类似于 SmallBlind.ToString("{0:0.00}")

您可能正在寻找的内容可能会得到最好的体现:

Limit = string.Format("{0} / {1}",
SmallBlind.ToString("{0:0.00}"),
BigBlind.ToString("{0:0.00}")),
//Rest of statement here...

根据你得到的错误(我昨天在一个问题中遇到了类似的错误)这是我的解决方案:

Limit = GetLimit(SmallBlind, BigBlind),
//Rest of Statement Here

然后用string.Format定义Get Limit:

private string GetLimit(double smallBlind, double bigBlind)
{
return string.Format("{0} / {1}",
smallBlind.ToString("{0:0.00}"),
bigBlind.ToString("{0:0.00}"));
}

我会把它留给比我更好的专家来解决为什么这会导致 Linq 失败,但这应该能让你绕过它。

当然,这假设您的 CashGameGeneralViewModel 出于某种原因不应该知道盲注。如果可以,解决方案(已在另一个答案中提到)是让 Limit getter 返回预先格式化的字符串。

可能有更好的方法来做我正在做的事情,但是,遇到你遇到的同样问题,这就是我解决它的方法。

关于.net - linq 查询中的 String.Format,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6035608/

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