x.Key=="Login"); 我有异常,因为表“Preferences”中键为“Login”的实体不存在,-6ren">
gpt4 book ai didi

sqlite - Xamarin SQLIteConnection : method "Get" throw exception if key doesn't exist

转载 作者:行者123 更新时间:2023-12-03 15:51:03 25 4
gpt4 key购买 nike

当我尝试运行这段代码时:

var l=_sqliteconnection.Get<Preferences> (x=>x.Key=="Login");

我有异常,因为表“Preferences”中键为“Login”的实体不存在,但如果实体存在,则没关系。我可以使用 try/catch block ,但我可以不使用 try 和 catch 吗?

谢谢。

最佳答案

来自 Get<TClass>返回类文档:

The object that matches the given predicate. Throws a not found exception if the object is not found

如果你不想要异常,最好使用 Find<TClass>获取具有给定主键的对象,如果未找到该对象,则返回 null。

关于sqlite - Xamarin SQLIteConnection : method "Get" throw exception if key doesn't exist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27130356/

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