domainobjects-subversion Mailing List for DomainObjects for .NET (Page 11)
Brought to you by:
rbeauchamp
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
(44) |
May
(21) |
Jun
(41) |
Jul
(23) |
Aug
(14) |
Sep
(9) |
Oct
(4) |
Nov
(20) |
Dec
(25) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(8) |
Feb
(3) |
Mar
(12) |
Apr
(9) |
May
(1) |
Jun
(11) |
Jul
(3) |
Aug
(6) |
Sep
(13) |
Oct
(12) |
Nov
(2) |
Dec
(1) |
2008 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(3) |
Jun
(1) |
Jul
|
Aug
(6) |
Sep
(4) |
Oct
(24) |
Nov
(4) |
Dec
(8) |
2009 |
Jan
(6) |
Feb
(1) |
Mar
(1) |
Apr
(5) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(16) |
Dec
(11) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(2) |
Jul
|
Aug
|
Sep
(6) |
Oct
(19) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(9) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <rbe...@us...> - 2006-11-22 17:50:56
|
Revision: 232 http://svn.sourceforge.net/domainobjects/?rev=232&view=rev Author: rbeauchamp Date: 2006-11-22 09:50:50 -0800 (Wed, 22 Nov 2006) Log Message: ----------- Continued to implement object graph consistency feature. Created unit test ObjectGraphTests.ReferenceUpdatedWhenPrimaryKeyObjectNeedsDelete(). Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Reference.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/InMemoryRelationship.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectGraphTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-11-22 17:29:16
|
Revision: 231 http://svn.sourceforge.net/domainobjects/?rev=231&view=rev Author: rbeauchamp Date: 2006-11-22 09:29:15 -0800 (Wed, 22 Nov 2006) Log Message: ----------- Continued to implement object graph consistency feature. Created unit test ObjectGraphTests.DeletedObjectRemovedFromLazyLoadedCollection(). Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Collection.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/FieldRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IFieldCollection.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Reference.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/TransactableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Test/DomainObjectsTestFixture.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/SingleThreadedUnitOfWork.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/InMemoryRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ProxyFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectGraphTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-11-22 16:16:23
|
Revision: 230 http://svn.sourceforge.net/domainobjects/?rev=230&view=rev Author: rbeauchamp Date: 2006-11-22 08:16:10 -0800 (Wed, 22 Nov 2006) Log Message: ----------- Fixed bug [ 1601181 ] Null value returned by FieldConversion causes exception. Modified Paths: -------------- trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/Parameter.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/NullableTypesTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/testbed/CreateDatabase.sql Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/StringToStringConversion.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-11-20 20:01:51
|
Revision: 229 http://svn.sourceforge.net/domainobjects/?rev=229&view=rev Author: dkondratiuk Date: 2006-11-20 12:01:48 -0800 (Mon, 20 Nov 2006) Log Message: ----------- New OracleCompatibleDataProvider. This provider Should be compatible with all Oracle versions, it builds the joins based on where clauses. I also open the door to future providers that do not support join tables with "Inner Join" and "Outer Joins" OracleCompatibleDataProvider (like Oracle 8i) does not support Full Joins. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Join.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/IDbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/WhereClause.cs trunk/DomainObjects2/src/Extensions/DomainObjects.Extensions.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/testbed/CreateDatabase.sql trunk/DomainObjects2/testbed/oracle/CreateDatabase.SQL Added Paths: ----------- trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleCompatibleDbModelSelectStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleCompatibleDataProvider.cs Removed Paths: ------------- trunk/DomainObjects2/src/OracleExtensions/obj/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-11-17 16:50:47
|
Revision: 228 http://svn.sourceforge.net/domainobjects/?rev=228&view=rev Author: rbeauchamp Date: 2006-11-17 08:50:46 -0800 (Fri, 17 Nov 2006) Log Message: ----------- - Added helper method to generated classes to initialize the relationship fields. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Metadata/Tool/Generator/DomainObjectGenerator.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MutatorAttributeTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-11-16 05:59:52
|
Revision: 227 http://svn.sourceforge.net/domainobjects/?rev=227&view=rev Author: rbeauchamp Date: 2006-11-15 21:59:50 -0800 (Wed, 15 Nov 2006) Log Message: ----------- - Added more object graph consistency functionality. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Collection.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Reference.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/ClassDescriptor.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/InMemoryRelationship.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectGraphTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-11-16 04:48:26
|
Revision: 226 http://svn.sourceforge.net/domainobjects/?rev=226&view=rev Author: rbeauchamp Date: 2006-11-15 20:48:24 -0800 (Wed, 15 Nov 2006) Log Message: ----------- - Added unit tests for object graph consistency. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Reference.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CollectionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectGraphTests.cs trunk/DomainObjects2/testbed/CreateDatabase.sql trunk/DomainObjects2/testbed/CreateDatabaseWithoutIdentity.sql This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-11-15 22:44:01
|
Revision: 225 http://svn.sourceforge.net/domainobjects/?rev=225&view=rev Author: rbeauchamp Date: 2006-11-15 14:43:59 -0800 (Wed, 15 Nov 2006) Log Message: ----------- - Adding support for object graph consistency - Adding support for 'prefetching' Modified Paths: -------------- trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/resource/Repository.xsd trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.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/SelectByPkCommandBuilder.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/IDbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Select/SelectResultsTable.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/WhereClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/Class.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/FieldRelationship.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/QueryFactory.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/ExistsCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/InCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/InSubqueryCriteria.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/DbAccess/RowReader.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Criteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Case.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/Domain/EditableObject.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/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/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/ITransactionSetAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/SingleThreadedUnitOfWork.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/AttributeDescriptor.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/CollectionDescriptor.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/IRelationshipDescriptor.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/ReferenceDescriptor.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/ReferenceDescriptorOverride.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/RelationshipDescriptor.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/RelationshipDescriptorOverride.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/ProxyFacade.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/BoundObjectMap.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.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/TypeReorderingStrategy.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj 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/SqlServer/ServerSideSequencerInsertCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/DbModel/MySql/MySqlDbModelSelectStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/Sequence/SequenceEntry.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/Product.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/SubType.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/DomainObjectGeneratorTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MtoNTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectBuilderTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/OptimisticConcurrencyTests.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/outerjointests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/ReorderValidator.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionSetAware.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/IFieldRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/InternalQuery.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Collection.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/CompositeKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/FieldRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/GuidKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IFieldCollection.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IFieldRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IntKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Key.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/NeedsDeleteEventArgs.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/OnAfterInsertArgs.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/OnDeletedFromDatabaseEventArgs.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/OnIdentityChangeArgs.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Reference.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/StringKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/TransactableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectGraphBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/IRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/InMemoryMtoNRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/InMemoryReferenceFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/InMemoryRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/RelationshipIdentity.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PersistenceTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryDepthTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/CompositePrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/GuidPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IntPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/StringPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ObjectReferenceFacade.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PersistenceBrokerTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-11-13 18:56:23
|
Revision: 224 http://svn.sourceforge.net/domainobjects/?rev=224&view=rev Author: dkondratiuk Date: 2006-11-10 09:09:50 -0800 (Fri, 10 Nov 2006) Log Message: ----------- New Criteria InSubquery were added Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/QueryFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/ComparisonCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Criteria.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleDbModelInsertStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/InSubqueryCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ShortPrimaryKey.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-11-08 17:41:23
|
Revision: 223 http://svn.sourceforge.net/domainobjects/?rev=223&view=rev Author: dkondratiuk Date: 2006-11-08 08:16:42 -0800 (Wed, 08 Nov 2006) Log Message: ----------- New ShortPrimaryKey support (for legacy tables) Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-11-01 20:08:52
|
Revision: 222 http://svn.sourceforge.net/domainobjects/?rev=222&view=rev Author: dkondratiuk Date: 2006-11-01 12:08:25 -0800 (Wed, 01 Nov 2006) Log Message: ----------- Some improvements to the data manipulation of OracleNativeDataProvider Modified Paths: -------------- trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleNativeDataProvider.cs trunk/DomainObjects2/src/OracleExtensions/obj/Debug/DomainObjects.OracleExtensions.dll trunk/DomainObjects2/src/OracleExtensions/obj/Debug/DomainObjects.OracleExtensions.pdb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-10-31 22:19:42
|
Revision: 221 http://svn.sourceforge.net/domainobjects/?rev=221&view=rev Author: dkondratiuk Date: 2006-10-31 14:19:32 -0800 (Tue, 31 Oct 2006) Log Message: ----------- app.config should not be updated Modified Paths: -------------- trunk/DomainObjects2/resource/app.config This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-10-31 22:18:08
|
Revision: 220 http://svn.sourceforge.net/domainobjects/?rev=220&view=rev Author: dkondratiuk Date: 2006-10-31 14:17:07 -0800 (Tue, 31 Oct 2006) Log Message: ----------- New provider OracleNativeDataProvider. It has its own solution because it needs OracleClient (from Oracle) installed. Modified Paths: -------------- trunk/DomainObjects2/resource/app.config trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.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/Command/Expression/Constant.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleDbModelSelectStatement.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/TestFixture/CollectionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/InheritanceHierarchyToSingleTableMappingTests.cs Added Paths: ----------- trunk/DomainObjects2/DomainObjects.OracleExtensions.sln trunk/DomainObjects2/src/OracleExtensions/ trunk/DomainObjects2/src/OracleExtensions/DomainObjects/ trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/ trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/Command/ trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/Command/Oracle/ trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/Command/Oracle/DbModel/ trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleNativeDbModelSelectStatement.cs trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/DataProvider/ trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/DataProvider/Oracle/ trunk/DomainObjects2/src/OracleExtensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleNativeDataProvider.cs trunk/DomainObjects2/src/OracleExtensions/DomainObjects.OracleExtensions.dll.csproj trunk/DomainObjects2/src/OracleExtensions/Properties/ trunk/DomainObjects2/src/OracleExtensions/Properties/AssemblyInfo.cs trunk/DomainObjects2/src/OracleExtensions/obj/ trunk/DomainObjects2/src/OracleExtensions/obj/Debug/ trunk/DomainObjects2/src/OracleExtensions/obj/Debug/DomainObjects.OracleExtensions.dll trunk/DomainObjects2/src/OracleExtensions/obj/Debug/DomainObjects.OracleExtensions.pdb trunk/DomainObjects2/src/OracleExtensions/obj/Debug/Refactor/ trunk/DomainObjects2/src/OracleExtensions/obj/Debug/ResolveAssemblyReference.cache trunk/DomainObjects2/src/OracleExtensions/obj/Debug/TempPE/ trunk/DomainObjects2/src/OracleExtensions/obj/DomainObjects.OracleExtensions.dll.csproj.FileList.txt Property Changed: ---------------- trunk/DomainObjects2/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-10-23 18:38:40
|
Revision: 219 http://svn.sourceforge.net/domainobjects/?rev=219&view=rev Author: dkondratiuk Date: 2006-10-23 11:38:31 -0700 (Mon, 23 Oct 2006) Log Message: ----------- New property called Proxy in the Service class. If some class that extends Serice is used with Remoting Proxy property should be used instead of Instance property. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/Service.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-10-18 13:18:04
|
Revision: 218 http://svn.sourceforge.net/domainobjects/?rev=218&view=rev Author: dkondratiuk Date: 2006-10-18 06:17:51 -0700 (Wed, 18 Oct 2006) Log Message: ----------- Bug fix: When more than one object is deleted all the instances are removed from cached (not just the first instance in the BoundSet) Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CacheTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-09-22 15:45:05
|
Revision: 215 http://svn.sourceforge.net/domainobjects/?rev=215&view=rev Author: rbeauchamp Date: 2006-09-22 08:44:56 -0700 (Fri, 22 Sep 2006) Log Message: ----------- Preparing for release 1.0.2. Modified Paths: -------------- trunk/DomainObjects2/ReleaseLog.txt trunk/DomainObjects2/src/Documentation/content/xdocs/Welcome/Features.xml trunk/DomainObjects2/src/Documentation/content/xdocs/index.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-09-22 15:26:39
|
Revision: 214 http://svn.sourceforge.net/domainobjects/?rev=214&view=rev Author: rbeauchamp Date: 2006-09-22 08:26:24 -0700 (Fri, 22 Sep 2006) Log Message: ----------- - Fix for bug [ 1552869 ] Exception when Trans_Seq_Num reaches max int value. Fix validated by unit test OptimisticConcurrencyTests.VersionRollsOverWhenMaxValueIsReached(). Modified Paths: -------------- trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/EditableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IEditable.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/OptimisticConcurrencyTests.cs trunk/DomainObjects2/testbed/CreateDatabase.sql trunk/DomainObjects2/testbed/CreateDatabaseWithoutIdentity.sql This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-09-22 14:43:22
|
Revision: 213 http://svn.sourceforge.net/domainobjects/?rev=213&view=rev Author: rbeauchamp Date: 2006-09-22 07:43:08 -0700 (Fri, 22 Sep 2006) Log Message: ----------- - [ 1563162 ] Object graph: leaf node deletion. Fix validated by unit test CascadeStoreAndDeleteTests.CascadeDeleteLeafNode(). Modified Paths: -------------- trunk/DomainObjects2/ReleaseLog.txt trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ScalarField.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CascadeStoreAndDeleteTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectBuilderTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-09-21 15:13:27
|
Revision: 212 http://svn.sourceforge.net/domainobjects/?rev=212&view=rev Author: rbeauchamp Date: 2006-09-21 08:12:57 -0700 (Thu, 21 Sep 2006) Log Message: ----------- - Fixed bug [ 1560918 ] Hierarchical delete problem. Fix validated by unit test CascadeStoreAndDeleteTests.CascadeDeleteObjectGraph(). - Added support for 'Null' scalar field. See unit test FunctionTests.CaseWithNull() for usage example. Modified Paths: -------------- trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/resource/ServerSideSequencer.config trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ScalarField.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Count.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/ReplaceNull.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/PersistenceState.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.Core.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/testbed/CreateDatabase.sql trunk/DomainObjects2/testbed/CreateDatabaseWithoutIdentity.sql Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/Null.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CascadeStoreAndDeleteTests.cs Removed 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. |
From: <dko...@us...> - 2006-09-20 18:59:11
|
Revision: 211 http://svn.sourceforge.net/domainobjects/?rev=211&view=rev Author: dkondratiuk Date: 2006-09-20 11:58:49 -0700 (Wed, 20 Sep 2006) Log Message: ----------- New functions: Lower and Upper where created Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ColumnField.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Lower.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Upper.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-09-20 17:01:55
|
Revision: 210 http://svn.sourceforge.net/domainobjects/?rev=210&view=rev Author: dkondratiuk Date: 2006-09-20 10:01:09 -0700 (Wed, 20 Sep 2006) Log Message: ----------- bug fix, The columns needs the columnIndex (the order of the column in the select clause) because it is added in the alias with the OracleDataProvider Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/Column.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/DerivedColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/IColumn.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/Select/OrderByField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/Constant.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ScalarField.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ja...@us...> - 2006-09-18 23:22:42
|
Revision: 209 http://svn.sourceforge.net/domainobjects/?rev=209&view=rev Author: jansa Date: 2006-09-18 16:22:36 -0700 (Mon, 18 Sep 2006) Log Message: ----------- Use COALESCE as IsNullFunctionName. Modified Paths: -------------- trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/MySql/MySqlDataProvider.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-09-15 13:28:05
|
Revision: 208 http://svn.sourceforge.net/domainobjects/?rev=208&view=rev Author: dkondratiuk Date: 2006-09-15 06:27:52 -0700 (Fri, 15 Sep 2006) Log Message: ----------- Oracle Big Fix. If there is some DBLink in a view it needs a commit after use it. If a begin transaction throws the exception "ORA-01453: SET TRANSACTION must be first statement of transaction" then a commit is executed. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Transaction/TransactionContext.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-09-11 17:02:20
|
Revision: 207 http://svn.sourceforge.net/domainobjects/?rev=207&view=rev Author: dkondratiuk Date: 2006-09-11 10:02:02 -0700 (Mon, 11 Sep 2006) Log Message: ----------- Long tables names are truncated in OracleSequenceCommandBuilder so the sequence name never will be longer that 30 characters Modified Paths: -------------- trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleSequenceCommandBuilder.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/OracleTests.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. |