Dapper Method 未找到异常
Dapper Method not found exception
using (var conn = _config.OpenConnection())
{
var p = new DynamicParameters();
p.Add("@playerName",playerName);
它以前在早期版本中运行良好,但最后一个小巧的版本 1.40.0.0 returns 奇怪的错误:
Result Message: Test method
DupGames.Database.DbAccess.Tests.BlackjackDbTests.SelectNewDealTest
threw exception: System.MissingMethodException: Method not found:
'Void Dapper.DynamicParameters.Add(System.String, System.Object,
System.Nullable1<System.Data.DbType>,
System.Nullable
1,
System.Nullable1<Int32>, System.Nullable
1,
System.Nullable`1)'.
版本不匹配导致的问题
谢谢
为了其他人通过 Google 找到它的好处:您的模型中可能有静态 属性。有关详细信息,请参阅 this bug。
using (var conn = _config.OpenConnection())
{
var p = new DynamicParameters();
p.Add("@playerName",playerName);
它以前在早期版本中运行良好,但最后一个小巧的版本 1.40.0.0 returns 奇怪的错误:
Result Message: Test method DupGames.Database.DbAccess.Tests.BlackjackDbTests.SelectNewDealTest threw exception: System.MissingMethodException: Method not found: 'Void Dapper.DynamicParameters.Add(System.String, System.Object, System.Nullable
1<System.Data.DbType>, System.Nullable
1, System.Nullable1<Int32>, System.Nullable
1, System.Nullable`1)'.
版本不匹配导致的问题
谢谢
为了其他人通过 Google 找到它的好处:您的模型中可能有静态 属性。有关详细信息,请参阅 this bug。