Automapper是一個很好的工具。但我有一些問題。automapper在調試模式下工作正常,但在發佈模式下引發了mappingexception
在調試項目時工作正常,所有的映射操作都成功了。但在發佈模式下,它會用完全相同的數據拋出mappingexception。
可能是什麼問題?
我的環境是Win7,32位,VS 2010。項目適用於.net 4.0配置文件。在調試模式下
Mapper.CreateMap<V_Person_Details,Person>();
Mapper.Map(curr_V_Person, cur_Person); /// exception throws here in just release mode , not in debug mode
///Trying to map System.String to System.nullable .... Destination property SSS_ID : exception of the Automapper.AutomapperMappingException was thrown.
....
那是什麼'映射異常'呢? – Tigran 2012-01-07 09:53:01
嘗試將System.string映射到System.nullable'1 ...但它在調試模式下使用相同的數據正常工作。 – Yaya 2012-01-07 09:54:27
**給我**,看起來你在調試和發佈中綁定到不同的'數據庫'。 – Tigran 2012-01-07 09:55:55