Hello everybody.
I'm having some problem with LLBLGen and SQLCE.
I Keep getting an exception 'TIMEOUT Exception' in the following block of code
EntityCollection<VehicleEntity> ColVehicleEnt = new EntityCollection<VehicleEntity>(new VehicleEntityFactory());
VehicleEntity oVeh = new VehicleEntity();
IRelationPredicateBucket vBucket = new RelationPredicateBucket();
vBucket.PredicateExpression.Add (VehicleFields.MacadamId == txtVehicle.Text);
DataAccessAdapter oDa = new DataAccessAdapter(XiparoRoot.LocalDBConnectionString );
oDa.CommandTimeOut = 0;
oDa.FetchEntityCollection(ColVehicleEnt,vBucket );
oDa.Dispose();
The LocalDBConnectionString is path & "\file.sdf"
The Error occurs on the FetchEntityCollection
How can i fix this problem?
TIA