OrmLiteConnectionFactory.cs 未找到错误
OrmLiteConnectionFactory.cs not found error
我正在尝试在 .net 的 ServiceStack Framework 中将 OrmLite
与 SQL 服务器一起使用。现在 table 正在创建,我也可以将值插入 table 但是在调试时我收到一条消息 You need to OrmLiteConnectionFactory.cs to view the source for the current call Stack frame
。我正在使用 ServiceStack 和 OrmLite第一次不知道这是什么for.Please帮我解决这个问题。谢谢
如果没有该库所需的调试符号,您将无法调试到外部库。 ServiceStack 调试符号在 VS.NET 中的 symbolsource.org however symbolsource.org has been unreliable for weeks so it's best you just skip over trying to debug external libraries by checking the Just My Code 选项上发布。
如果你真的想调试 ServiceStack 库,其他选项是使用 v4.0.44 .pdb symbols published in the Assets repo. Another option is to clone the ServiceStack.OrmLite GitHub 存储库,它包含 OrmLite 的所有源代码。
我正在尝试在 .net 的 ServiceStack Framework 中将 OrmLite
与 SQL 服务器一起使用。现在 table 正在创建,我也可以将值插入 table 但是在调试时我收到一条消息 You need to OrmLiteConnectionFactory.cs to view the source for the current call Stack frame
。我正在使用 ServiceStack 和 OrmLite第一次不知道这是什么for.Please帮我解决这个问题。谢谢
如果没有该库所需的调试符号,您将无法调试到外部库。 ServiceStack 调试符号在 VS.NET 中的 symbolsource.org however symbolsource.org has been unreliable for weeks so it's best you just skip over trying to debug external libraries by checking the Just My Code 选项上发布。
如果你真的想调试 ServiceStack 库,其他选项是使用 v4.0.44 .pdb symbols published in the Assets repo. Another option is to clone the ServiceStack.OrmLite GitHub 存储库,它包含 OrmLite 的所有源代码。