Base solution for your next web application

Activities of "mrvithan"

Done !! ... thx a lot u save my life.

Can you provide the requested namespace ?

Ok i got more detail....

I am trying to use a HTML to PDF dll (<a class="postlink" href="http://www.nrecosite.com/pdf_generator_net.aspx">http://www.nrecosite.com/pdf_generator_net.aspx</a>), which run wkhtmltopdf execute file. And it auto install 2 files "msvcp120.dll" and another one into Web/Bin; which seems that the ABP loader can't load the DLL correctly. If i remove both DLL, the system run fine.

Any suggestion ?

Solved. After running thru all source code, i found this LanguageManager !!!.

For the first issue: here is the shot code snap:

I have a IInputDto class said :

public class TheaterUpdate : IInputDto { public int Id;

[Required] public string name; }

Then in a AppService said :

public class TheaterAppService: ITheaterAppService { public void AddOrUpdate(TheaterUpdate entity) { var obj = new Theater() obj.Id = entity.Id; obj.Name = entity.Name; _repo.InsertOrUpdate(obj);

} }

then i will get the Exception said there is already has the same entity key exists. And suggestion ??

For the second issue, i will try in couple days and will feedback asap.

Solved already.

I have tried to override following this topic #308, but it won't work. Still show default error message.

Showing 11 to 17 of 17 entries