Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ServiceStack Ormlite: System.InvalidProgramException JIT Compiler encountered an internal limitation

Hi i'm running ServiceStack with Ormlite and I encountered this error. Previously it is working fine. I'm not sure what I have changed that caused this error. I just used a simple db.Select() call and it throws this error. I tried various ways, like updating the nuget packages, clean and rebuild the project, etc and none of them works.

System.InvalidProgramException was caught
  _HResult=-2146233030
  _message=JIT Compiler encountered an internal limitation.
  HResult=-2146233030
  IsTransient=false
  Message=JIT Compiler encountered an internal limitation.
  Source=ServiceStack.OrmLite
  StackTrace:
       at ServiceStack.OrmLite.OrmLiteConfig.get_ExecFilter()
       at ServiceStack.OrmLite.ReadConnectionExtensions.Exec[T](IDbConnection dbConn, Func`2 filter)
       at ServiceStack.OrmLite.ReadConnectionExtensions.Select[T](IDbConnection dbConn, Expression`1 predicate)
   InnerException: 

can anyone suggest what might went wrong?

like image 955
icube Avatar asked Jul 28 '14 08:07

icube


1 Answers

I turned off IntelliTrace and it works again.

like image 170
icube Avatar answered Oct 06 '22 00:10

icube