Thread: [DomainObjects-Subversion] SF.net SVN: domainobjects: [65] trunk/DomainObjects2/src/Test
Brought to you by:
rbeauchamp
From: <rbe...@us...> - 2006-04-13 15:33:25
|
Revision: 65 Author: rbeauchamp Date: 2006-04-13 08:32:54 -0700 (Thu, 13 Apr 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=65&view=rev Log Message: ----------- Fixing unit tests. Modified Paths: -------------- trunk/DomainObjects2/src/Common/DomainObjects/Po/IPersistable.cs trunk/DomainObjects2/src/Core/DomainObjects/Cache/CacheFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/OrderByField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/RowReader.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectListBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectPageBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/LazyLoadingObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ListProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ProxyFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/TransactableObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Sequence/SequenceManager.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj.user trunk/DomainObjects2/src/Facade/DomainObjects.Facade/Query/QueryFacade.cs trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects/Po/EditableObject.cs trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects/Po/PersistableObject.cs trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects/Po/ReadOnlyObject.cs trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects.FrameworkBaseTypes.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/DomainObjectGeneratorTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/InheritanceHierarchyToSingleTableMappingTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PersistenceBrokerTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectInitializer.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CacheTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CallContextTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-04-16 05:40:12
|
Revision: 72 Author: rbeauchamp Date: 2006-04-15 22:40:00 -0700 (Sat, 15 Apr 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=72&view=rev Log Message: ----------- Fixed RepositoryGenTests test fixture. Also removed outdated, and redundant unit tests. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Sequence/SequenceManager.cs trunk/DomainObjects2/src/Metadata/DomainObjects.Metadata/DescriptorRepository.cs trunk/DomainObjects2/src/Metadata/DomainObjects.Metadata/Tool/Generator/RepositoryGenerator.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectReferenceTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/RepositoryGenTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionBoundaryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionNotSupportedService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionRequiredService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionRequiredService2.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionSupportedService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionalService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/src/Tutorial/DomainObjects.Tutorial/TransactionFacade.cs Removed Paths: ------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/OutsideTransactionContextTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PolymorphicExtentTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-04-27 16:42:48
|
Revision: 103 Author: rbeauchamp Date: 2006-04-27 09:42:25 -0700 (Thu, 27 Apr 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=103&view=rev Log Message: ----------- Implemented support for additional SQL functions. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Count.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/DatePart.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/IsNull.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/ScalarFunction.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Sum.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/ColumnField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/IField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/IntersectionTableColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/ScalarField.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/DateDiff.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/GetDate.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Max.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/PartOfDateTime.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-04-28 17:58:43
|
Revision: 106 Author: rbeauchamp Date: 2006-04-28 10:58:30 -0700 (Fri, 28 Apr 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=106&view=rev Log Message: ----------- Added ability to specify an ITransactionAware type in the TransactionAttribute constructor. Modified Paths: -------------- trunk/DomainObjects2/src/Common/DomainObjects/Transaction/TransactionAttribute.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/CallContext.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ObjectTransaction.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/TransactionContext.cs trunk/DomainObjects2/src/Facade/DomainObjects.Facade/Test/TransactionalTestFixture.cs trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects/Transaction/Service.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAwareTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/src/TestDataLoader/DomainObjects/Test/TestDataLoader/Loader.cs Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionAware.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionAwareService.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-05-12 14:59:51
|
Revision: 119 Author: rbeauchamp Date: 2006-05-12 07:59:14 -0700 (Fri, 12 May 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=119&view=rev Log Message: ----------- Continuing to implement support for union, union all and having. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/PagingSelectCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Having/HavingClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/SearchConditionClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/WhereClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/DataSetSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/ObjectModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/QueryFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Union.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/BetweenCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/CompareToFieldCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/ComparisonCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/Criteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/EqualToFieldCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/ExistsCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/GreaterThanFieldCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/InCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/LessThanFieldCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/NullCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Facade/DomainObjects.Facade/QueryFacade.cs trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-06-09 15:22:22
|
Revision: 136 Author: rbeauchamp Date: 2006-06-09 08:21:59 -0700 (Fri, 09 Jun 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=136&view=rev Log Message: ----------- Added SqlParameter caching to improve SQL Server performance. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/ICommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/ParameterBindingUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/MySql/MySqlDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/SqlServerDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects.Extensions.dll.csproj trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAwareTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/ParameterCache.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-06 03:39:14
|
Revision: 175 Author: rbeauchamp Date: 2006-07-05 20:35:23 -0700 (Wed, 05 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=175&view=rev Log Message: ----------- Moved publicly accessible classes to the Facade namespace. Fixed issues with List<>.AsReadOnly() not being thread safe. Modified Paths: -------------- trunk/DomainObjects2/bin/ndoc/DomainObjects.ndoc trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/resource/Repository.xsd trunk/DomainObjects2/resource/ServerSideSequencer.config trunk/DomainObjects2/resource/app.config trunk/DomainObjects2/src/Core/DomainObjects/Cache/CacheFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.cs trunk/DomainObjects2/src/Core/DomainObjects/Conversion/FieldConversionFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/Parameter.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectByPkCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/DerivedColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Having/HavingClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/IDbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/SearchConditionClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Select/SelectResultsTable.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/ConcreteTypeConstraintHandler.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/WhereClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/ScalarFunction.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/IntersectionTableColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/Class.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/ITableMappedObject.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/IntersectionTable.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/MtoNCollectionRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/RootClass.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelDeleteStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelInsertStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelUpdateStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/DataSetSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/ObjectModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/OrderByField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/QueryFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/SetParameter.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Union.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/BetweenCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/CompareToFieldCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/ComparisonCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/EqualToCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/EqualToFieldCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/ExistsCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/GreaterThanCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/GreaterThanFieldCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/InCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/LessThanCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/LessThanFieldCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/LikeCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/NullCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/ValueCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/OptimisticConcurrencyException.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/RowReader.cs trunk/DomainObjects2/src/Core/DomainObjects/Diagnostics/DatabaseAccessMonitor.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Test/DomainObjectsTestFixture.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Test/TransactionalTestFixture.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/DescriptorRepository.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/Tool/Generator/DomainObjectGenerator.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectInitializer.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectSetBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/AbstractProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/LazyLoadingObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ListProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ProxyFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/TransactableObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectMap.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/IdentityList.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/IdentityPositionMap.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ObjectTransaction.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/PersistenceState.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/PersistenceStateFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/StateNewDelete.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/StateNewEdited.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/StateNewUnedited.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/StateOldDelete.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/StateOldEdited.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/StateOldUnedited.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/TransactionContext.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Core/Exceptions.cs trunk/DomainObjects2/src/Documentation/content/xdocs/Welcome/QuickStart.xml trunk/DomainObjects2/src/DomainObjectGen/assemblyinfo.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Conversion/Boolean2IntFieldConversion.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Conversion/DefaultFieldConversion.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Conversion/EnumStringConversion.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Conversion/GuidStringConversion.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Conversion/NullableTypeConversion.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Conversion/Object2ByteArrFieldConversion.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Conversion/StringGuidConversion.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/SqlServerDataProviderServerSideSequencer.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Sequence/SequenceEntry.cs trunk/DomainObjects2/src/Extensions/Properties/AssemblyInfo.cs trunk/DomainObjects2/src/Manager/AssemblyInfo.cs trunk/DomainObjects2/src/RepositoryGen/assemblyinfo.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Resource/DomainObjectGenTests/GenerateClasses.xml trunk/DomainObjects2/src/Test/DomainObjects.Test/Resource/EditDescriptorRepositoryTests/InsertRelationshipDescriptorIds.xml trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/AdoNetTransactionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CacheTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CollectionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/DiagnosticsTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/EditDescriptorRepositoryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ForeignKeyTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/IdentityTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/InheritanceHierarchyToSingleTableMappingTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MtoNTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MutatorAttributeTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/NullableTypesTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectBuilderTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectGraphTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectReferenceTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectTransactionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/OptimisticConcurrencyTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PerformanceTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PersistenceBrokerTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PrimaryKeyTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ProxyTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/RepositoryFactoryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/SerializationTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ServerSideSequencerTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAttributeTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAwareTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionBoundaryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/outerjointests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Collection/CustomList.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Collection/ICustomList.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/NonTransactionalService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/ReorderValidationService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/ReorderValidator.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionNotSupportedService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionRequiredService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionRequiredService2.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionSetAware.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionSetAwareService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionSupportedService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionalService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/src/Test/Properties/AssemblyInfo.cs trunk/DomainObjects2/src/TestDataLoader/AssemblyInfo.cs trunk/DomainObjects2/src/TestDataLoader/DomainObjects/Test/TestDataLoader/Loader.cs trunk/DomainObjects2/src/TestDataLoader/DomainObjects/Test/TestDataLoader/Reader.cs trunk/DomainObjects2/src/Tutorial/AssemblyInfo.cs trunk/DomainObjects2/src/Tutorial/DomainObjects.Tutorial/Planet.cs trunk/DomainObjects2/src/Tutorial/DomainObjects.Tutorial/PlanetarySatellite.cs trunk/DomainObjects2/src/Tutorial/DomainObjects.Tutorial/Star.cs trunk/DomainObjects2/src/Tutorial/DomainObjects.Tutorial/TransactionFacade.cs trunk/DomainObjects2/src/Tutorial/DomainObjects.Tutorial/TutorialTests.cs Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/ trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Criteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ColumnField.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/Constant.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/IField.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ScalarField.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/ trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Average.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Case.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Convert.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Count.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/DateDiff.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/DatePart.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/GetDate.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Max.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/PartOfDateTime.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/ReplaceNull.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Sum.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/PersistenceFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/QueryFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Diagnostics/ trunk/DomainObjects2/src/Core/DomainObjects/Facade/Diagnostics/DatabaseAccessEvent.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/AfterInsertEventHandler.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/CompositePrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/DatabaseIdentityChangeEventHandler.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/DeletedEventHandler.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/EditableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/FieldConversion.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/GuidPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ICreatable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IDeletable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IEditable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IFieldConversion.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IImmutable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IPersistable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IReadOnly.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ITransactable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Identity.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ImmutableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IntPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/MutatorAttribute.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ReadOnlyObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/StringPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/ trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/BindUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/IService.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/ITransactionAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/ITransactionSetAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/Service.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/ServiceActivator.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/SingleThreadedUnitOfWork.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/TransactionAttribute.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/TransactionOption.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ProxyFacade.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/ trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/BaseType.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/Product.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/Role.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/RootObject.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/SimpleObject.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/SimpleObjectClass.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/StockDetail.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/SubType.cs Removed Paths: ------------- trunk/DomainObjects2/src/Core/DomainObjects/Conversion/FieldConversion.cs trunk/DomainObjects2/src/Core/DomainObjects/Conversion/IFieldConversion.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/InsertManyToManyCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/ParameterBindingUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Average.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Case.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Convert.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Count.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/DateDiff.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/DatePart.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/GetDate.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Max.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/PartOfDateTime.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/ReplaceNull.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/Sum.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/ColumnField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/Constant.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/IField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/ScalarField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/Criteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Diagnostics/DatabaseAccessEvent.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/BindUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Diagnostics/DatabaseAccessEvent.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Diagnostics/DatabaseAccessMonitor.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/PersistenceFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/ProxyFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/QueryFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/ServiceActivator.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/SingleThreadedUnitOfWork.cs trunk/DomainObjects2/src/Core/DomainObjects/Po/ trunk/DomainObjects2/src/Core/DomainObjects/Transaction/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/IService.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ITransactionAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ITransactionSetAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/MutatorAttribute.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/Service.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/TransactionAttribute.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/TransactionOption.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Po/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-12 06:02:33
|
Revision: 179 Author: rbeauchamp Date: 2006-07-11 23:02:21 -0700 (Tue, 11 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=179&view=rev Log Message: ----------- Added ability to 'update by criteria' to perform batch updates directly against the database. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelInsertStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelUpdateStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelUpdateStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/SetParameter.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/PersistenceFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ObjectTransaction.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/SetParameter.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Update.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/UpdateCommandTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-12 06:18:25
|
Revision: 180 Author: rbeauchamp Date: 2006-07-11 23:18:15 -0700 (Tue, 11 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=180&view=rev Log Message: ----------- Renamed the class 'Update' to the more descriptive name of 'UpdateByCriteria'. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelUpdateStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/PersistenceFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ObjectTransaction.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/UpdateByCriteria.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/UpdateByCriteriaTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Update.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/UpdateCommandTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-08-31 21:22:25
|
Revision: 206 http://svn.sourceforge.net/domainobjects/?rev=206&view=rev Author: dkondratiuk Date: 2006-08-31 14:22:10 -0700 (Thu, 31 Aug 2006) Log Message: ----------- Added some database compatibility tests Modified Paths: -------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/Properties/UnitTestProperties.xml trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/DatabaseCompatibilityTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ja...@us...> - 2006-04-16 21:43:27
|
Revision: 80 Author: jansa Date: 2006-04-16 14:42:56 -0700 (Sun, 16 Apr 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=80&view=rev Log Message: ----------- Removed unneeded .cvsignore files. Removed Paths: ------------- trunk/DomainObjects2/src/Common/.cvsignore trunk/DomainObjects2/src/Core/.cvsignore trunk/DomainObjects2/src/Documentation/.cvsignore trunk/DomainObjects2/src/DomainObjectGen/.cvsignore trunk/DomainObjects2/src/Facade/.cvsignore trunk/DomainObjects2/src/Framework/.cvsignore trunk/DomainObjects2/src/Manager/.cvsignore trunk/DomainObjects2/src/Mapper/.cvsignore trunk/DomainObjects2/src/Metadata/.cvsignore trunk/DomainObjects2/src/RepositoryGen/.cvsignore trunk/DomainObjects2/src/Test/.cvsignore trunk/DomainObjects2/src/TestDataLoader/.cvsignore trunk/DomainObjects2/src/TestWithoutIdentitySupport/.cvsignore trunk/DomainObjects2/src/Tutorial/.cvsignore This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ja...@us...> - 2006-04-19 20:39:55
|
Revision: 87 Author: jansa Date: 2006-04-19 13:38:50 -0700 (Wed, 19 Apr 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=87&view=rev Log Message: ----------- Refactoring to support MySql. (all 130 unit tests pass for SQL Server, 127 unit tests pass for MySql.) Modified Paths: -------------- trunk/DomainObjects2/resource/app.config trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/DeleteCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/InsertCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/InsertManyToManyCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/PagingSelectCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectByPkCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelDeleteStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelUpdateStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Select/SelectResultsTable.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/ObjectModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/UpdateCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/MySql/MySqlDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/SqlServerDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/SqlServerDataProviderWithIdentitySupport.cs trunk/DomainObjects2/src/Extensions/DomainObjects.Extensions.dll.csproj trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MtoNTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/DbModel/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/DbModel/MySql/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/DbModel/MySql/MySqlDbModelDeleteStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/DbModel/MySql/MySqlDbModelSelectStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/DbModel/MySql/MySqlDbModelUpdateStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/DbModel/SqlServer/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/MySql/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/MySql/MySqlDeleteCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/MySql/MySqlInsertCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/MySql/MySqlSelectCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/MySql/MySqlUpdateCommandBuilder.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-05-24 15:36:28
|
Revision: 126 Author: rbeauchamp Date: 2006-05-24 08:35:47 -0700 (Wed, 24 May 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=126&view=rev Log Message: ----------- - Fixed performance issue with removing duplicates from retrieved ObjectSetBuilder rows. - Added support for database event raising and handling. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Cache/CacheFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectSetBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/Po/IDeletable.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/AbstractProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/TransactableObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Facade/DomainObjects.Facade/SingleThreadedUnitOfWork.cs trunk/DomainObjects2/src/Facade/DomainObjects.Facade/Test/DomainObjectsTestFixture.cs trunk/DomainObjects2/src/Facade/DomainObjects.Facade/Test/TransactionalTestFixture.cs trunk/DomainObjects2/src/FrameworkBaseTypes/DomainObjects/Transaction/Service.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CacheTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectBuilderTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/src/TestDataLoader/DomainObjects/Test/TestDataLoader/Loader.cs Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Diagnostics/ trunk/DomainObjects2/src/Core/DomainObjects/Diagnostics/DatabaseAccessEvent.cs trunk/DomainObjects2/src/Core/DomainObjects/Diagnostics/DatabaseAccessMonitor.cs trunk/DomainObjects2/src/Core/DomainObjects/Po/CompositePrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Po/GuidPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Po/IntPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Po/PrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Po/StringPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/DatabaseSession.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/DiagnosticsTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Core/DomainObjects/Transaction/CallContext.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-06-28 20:54:19
|
Revision: 168 Author: dkondratiuk Date: 2006-06-28 13:54:10 -0700 (Wed, 28 Jun 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=168&view=rev Log Message: ----------- added some quotes to the prebuilds events Modified Paths: -------------- trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/src/Tutorial/HelloWorld.exe.csproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-07-14 12:31:50
|
Revision: 181 Author: dkondratiuk Date: 2006-07-14 05:30:55 -0700 (Fri, 14 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=181&view=rev Log Message: ----------- TestDataLoader works with Oracle support The following changes were made: * IDataProvider / AbstractDataProvider * New Property SupportSequences added * GetSequenceCommand method added * The responsibility of how a field or a table will be in the sql statement were moved to the provider * New property TrustedProvider. With this property RowReader knows y can uses all the properties of a reader or not * The method GetNextSequence were added in the CommandExecutionUtil * The scope of several methods was changed, so the provider specific classes may override them These are the Oracle differences that were solved : * Sequences * There is no Top keyword (Rownum were used) * Its important the order of the parameters * The Delete clause its differentTestDataLoader and all tests works with Oracle support The following changes were made: * IDataProvider / AbstractDataProvider * New Property SupportSequences added * GetSequenceCommand method added * The responsibility of how a field or a table will be in the sql statement were moved to the provider * New property TrustedProvider. With this property RowReader knows y can uses all the properties of a reader or not * The method GetNextSequence were added in the CommandExecutionUtil * The scope of several methods was changed, so the provider specific classes may override them These are the Oracle differences that were solved : * Sequences * There is no Top keyword (Rownum were used) * Its important the order of the parameters * The Delete clause its different Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectByPkCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelInsertStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelUpdateStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/Column.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/IColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/WhereClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/RowReader.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects.Extensions.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/testbed/oracle/CreateDatabase.SQL Added Paths: ----------- trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleDbModelInsertStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleDbModelSelectStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleDeleteCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleSequenceCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleUpdateCommandBuilder.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-14 15:51:33
|
Revision: 182 Author: rbeauchamp Date: 2006-07-14 08:51:16 -0700 (Fri, 14 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=182&view=rev Log Message: ----------- Fixed bug '[ 1522191 ] OnAfterReconstructor Issue' Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IPersistable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IReconstructionAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectInitializer.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectSetBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/Product.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CallbackTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAwareTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-08 16:16:13
|
Revision: 193 Author: rbeauchamp Date: 2006-08-08 09:15:14 -0700 (Tue, 08 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=193&view=rev Log Message: ----------- Fix for bug [ 1532045 ] Old version of object retrieved by transaction. Fix for bug [ 1531977 ] Database or object transaction cannot be retried. Modified Paths: -------------- trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/src/Core/DomainObjects/Cache/CacheFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/EditableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ICreatable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ImmutableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ReadOnlyObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Test/DomainObjectsTestFixture.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/SingleThreadedUnitOfWork.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/DescriptorRepository.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectInitializer.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/AbstractProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/LazyLoadingObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ListProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ProxyFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ProxyServices.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/TransactableObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ObjectTransaction.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/StateOldDelete.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Documentation/DomainObjects.Documentation.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/BaseType.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/RootObject.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/AdoNetTransactionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CacheTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CallbackTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CollectionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MtoNTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MutatorAttributeTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectBuilderTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectReferenceTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectTransactionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PerformanceTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PrimaryKeyTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ProxyTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAttributeTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/NonTransactionalService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionNotSupportedService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionRequiredService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionRequiredService2.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionSupportedService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/src/TestDataLoader/DomainObjects/Test/TestDataLoader/Loader.cs trunk/DomainObjects2/src/TestDataLoader/TestDataLoader.exe.csproj Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ObjectReferenceFacade.cs trunk/DomainObjects2/src/Documentation/content/xdocs/Documentation/ObjectScope.xml trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CompositeKeyTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ForeignKeyTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-15 14:44:58
|
Revision: 200 Author: rbeauchamp Date: 2006-08-15 07:44:36 -0700 (Tue, 15 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=200&view=rev Log Message: ----------- - Fixed issue with caching collections. - EditableObject and ImmutableObject are automatically bound to current transaction when created (as in current released version) for backwards compatibility. I will make this configurable so that users can choose to use the 'automatic bind' functionality. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/EditableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ImmutableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ObjectReferenceFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ObjectTransaction.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectScopeTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |