We have our application using ORM with 2009.01.0311.1 and everything is fine. But then when we try to work on the applicaton on another PC, which using the latest version 2009.1 405, it throws this error when we commit something:
Interface for stored procedure 'sp_oa_ins__address' not sufficient to pass the value for oid column 'AddressId' of table 'Address'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Telerik.OpenAccess.Exceptions.MetadataException: Interface for stored procedure 'sp_oa_ins__address' not sufficient to pass the value for oid column 'AddressId' of table 'Address'.
Source Error:
Line 22: scope.Transaction.Begin();
Line 23: scope.Add(ObjectRef);
Line 24: scope.Transaction.Commit();
Line 25:
Line 26: return Convert.ToInt16(scope.GetObjectId(ObjectRef).ToString());