You will need to add a method to the DataAccessAdapter.cs class similar to the following method, either by using another file (partial class) , or by deriving from it.
public static void SetArithAbortFlag(bool value)
{ SD.LLBLGen.Pro.DQE.SqlServer.DynamicQueryEngine.ArithAbortOn = value;
}
Then you will need to modify the SQL Server DQE (DynamicQueryEngine.cs)
Just follow the ArithAbortOn flag, and you will know what to add and where to ad it.