【发布时间】:2021-08-17 10:09:38
【问题描述】:
我只想从我的软件 KeePass 中获取密码。
在此处使用旧问题Link to the question 中的代码后,我收到此错误消息:
S1061 'IEnumerable<<anonymous type: string Group, string Title, string Username, string Password>>' does not contain a definition for 'Dump' and no accessible extension method 'Dump' accepting a first argument of type 'IEnumerable<<anonymous type: string Group, string Title, string Username, string Password>>' could be found (are you missing a using directive or an assembly reference?) KeePasso C:\Users\prusinma\source\repos\KeePasso\KeePasso\Program.cs 36 Active
这是我正在使用的代码:
using System.Linq;
using KeePassLib;
using KeePassLib.Keys;
using KeePassLib.Serialization;
namespace KeePasso
{
class Program
{
static void Main()
{
var dbpath = @"\\xxx\Home_VIE\xxx\Desktop\KeePassDatabase\Database.kdbx";
var keypath = @"\\xxx\Home_VIE\xxx\Desktop\KeePassDatabase\Database.key";
var masterpw = "1234abcd";
var ioConnInfo = new IOConnectionInfo { Path = dbpath };
var compKey = new CompositeKey();
compKey.AddUserKey(new KcpPassword(masterpw));
compKey.AddUserKey(new KcpKeyFile(IOConnectionInfo.FromPath(keypath))); // Keyfile
var db = new PwDatabase();
db.Open(ioConnInfo, compKey, null);
var kpdata = from entry in db.RootGroup.GetEntries(true)
select new
{
Group = entry.ParentGroup.Name,
Title = entry.Strings.ReadSafe("Title"),
Username = entry.Strings.ReadSafe("UserName"),
Password = entry.Strings.ReadSafe("Password"),
};
kpdata.Dump(); // this is how Linqpad outputs stuff
db.Close();
}
}
}
在代码的最后几行中,Dump 处有一条红色下划线。它显示了我在上面分享的相同错误消息。
我已经在尝试寻找类似的问题,其中大部分都与类型有关。但正如我所见,标题、用户名和密码中的所有数据/条目都是字符串。
如果有人可以帮助我,将不胜感激。 Id 也开放其他解决方案如何从数据库中读出密码。
谢谢!
【问题讨论】:
-
要清楚 - 你真的想在 Linqpad 中运行这段代码吗?正如注释所示,该行正在使用 Linqpad 功能。
-
这里的明确提示是
this is how Linqpad outputs stuff。 -
谢谢我看看。