domainobjects-subversion Mailing List for DomainObjects for .NET
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...> - 2011-05-01 02:01:47
|
Revision: 482 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=482&view=rev Author: rbeauchamp Date: 2011-05-01 02:01:41 +0000 (Sun, 01 May 2011) Log Message: ----------- - Ensured that parameter lengths are determined after the parameter value has been converted to a database type. Modified Paths: -------------- branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/Parameter.cs branches/DomainObjects3/src/Tutorial/HelloWorld.exe.csproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-30 22:19:06
|
Revision: 481 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=481&view=rev Author: rbeauchamp Date: 2011-04-30 22:18:59 +0000 (Sat, 30 Apr 2011) Log Message: ----------- - Added a configuration 'FixLengthOfVariableLengthDataTypes. If true, for data types AnsiString or Binary, DomainObjects will set the command parameter length to 8000 if the parameter value length is less than or equal to 8000, else to 2147483647. And for the unicode data type String, DomainObjects will set the command parameter length to 4000 if the parameter value length is less than or equal to 4000, else to 2147483647. If false, then DomainObjects will set the command parameter to the actual length of the parameter value. The default is true. Setting the value to true will reduce the number query plans generated for SQL Server. See http://connect.microsoft.com/VisualStudio/feedback/details/363290/linq-to-sql-queries-involving-strings-cause-sql-server-procedure-cache-bloat Modified Paths: -------------- branches/DomainObjects3/resource/app.config branches/DomainObjects3/src/Core/DomainObjects/Configuration/DomainObjectsConfiguration.cs branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/Parameter.cs branches/DomainObjects3/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs branches/DomainObjects3/src/Extensions/DomainObjects/DbAccess/DataProvider/MySql/MySqlDataProvider.cs branches/DomainObjects3/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs branches/DomainObjects3/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/SqlServer2000DataProvider.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-29 23:19:33
|
Revision: 480 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=480&view=rev Author: rbeauchamp Date: 2011-04-29 23:19:27 +0000 (Fri, 29 Apr 2011) Log Message: ----------- - Implemented equality operators for the Alias class. Modified Paths: -------------- branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Alias.cs branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Constant.cs branches/DomainObjects3/src/Test/DomainObjects.Test/TestFixture/GeneratedReferencePathTests.cs branches/DomainObjects3/src/Test/DomainObjects.Test/TestFixture/SerializationTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-29 21:44:09
|
Revision: 479 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=479&view=rev Author: rbeauchamp Date: 2011-04-29 21:44:03 +0000 (Fri, 29 Apr 2011) Log Message: ----------- - Fixed issue with serialization of a field. Modified Paths: -------------- branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Constant.cs Property Changed: ---------------- branches/DomainObjects3/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-29 20:18:12
|
Revision: 478 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=478&view=rev Author: rbeauchamp Date: 2011-04-29 20:18:05 +0000 (Fri, 29 Apr 2011) Log Message: ----------- - Fixed issue with serialization of the Alias class. Modified Paths: -------------- branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Alias.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-29 20:04:15
|
Revision: 477 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=477&view=rev Author: rbeauchamp Date: 2011-04-29 20:04:09 +0000 (Fri, 29 Apr 2011) Log Message: ----------- - Fixed issue with binary serialization. Validated via unit test BinarySerializePersistableObject(). Modified Paths: -------------- branches/DomainObjects3/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs branches/DomainObjects3/src/Test/DomainObjects.Test/TestFixture/SerializationTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-29 18:12:08
|
Revision: 476 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=476&view=rev Author: rbeauchamp Date: 2011-04-29 18:12:02 +0000 (Fri, 29 Apr 2011) Log Message: ----------- - Added ability to use an alias to reference another field in a sql statement. For a usage example see unit test QueryTests.OrderByAlias(). Modified Paths: -------------- branches/DomainObjects3/DomainObjects.5.1.ReSharper branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/ScalarFunction.cs branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/IntersectionTableColumn.cs branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/GroupByField.cs branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/OrderByField.cs branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/SelectField.cs branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/ColumnField.cs branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Constant.cs branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Field.cs branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Null.cs branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Query.cs branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/ScalarQuery.cs branches/DomainObjects3/src/Core/DomainObjects/Serialization/FieldSerializer.cs branches/DomainObjects3/src/Core/DomainObjects.Core.dll.csproj branches/DomainObjects3/src/Documentation/DomainObjects.Documentation.csproj branches/DomainObjects3/src/Test/DomainObjects.Test/InternalDomainObjectsTestFixture.cs branches/DomainObjects3/src/Test/DomainObjects.Test/Properties/UnitTestProperties.xml branches/DomainObjects3/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs Added Paths: ----------- branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Alias.cs Property Changed: ---------------- branches/DomainObjects3/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-22 18:34:26
|
Revision: 475 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=475&view=rev Author: rbeauchamp Date: 2011-04-22 18:34:20 +0000 (Fri, 22 Apr 2011) Log Message: ----------- - Made Field.GetAlias() public Modified Paths: -------------- branches/DomainObjects3/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/SelectField.cs branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Expression/Field.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-22 18:14:56
|
Revision: 474 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=474&view=rev Author: rbeauchamp Date: 2011-04-22 18:14:50 +0000 (Fri, 22 Apr 2011) Log Message: ----------- - Implemented the SUBSTRING function Modified Paths: -------------- branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Function/Substring.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2011-04-22 18:12:13
|
Revision: 473 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=473&view=rev Author: rbeauchamp Date: 2011-04-22 18:12:07 +0000 (Fri, 22 Apr 2011) Log Message: ----------- - Upgraded to VS 2010 - Implemented the SUBSTRING function Modified Paths: -------------- branches/DomainObjects3/DomainObjects.sln branches/DomainObjects3/src/Core/DomainObjects.Core.dll.csproj branches/DomainObjects3/src/Documentation/DomainObjects.Documentation.csproj branches/DomainObjects3/src/DomainObjectGen/DomainObjectGen.exe.csproj branches/DomainObjects3/src/Extensions/DomainObjects.Extensions.dll.csproj branches/DomainObjects3/src/RepositoryGen/RepositoryGen.exe.csproj branches/DomainObjects3/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs branches/DomainObjects3/src/Test/DomainObjects.Test.dll.csproj branches/DomainObjects3/src/TestDataLoader/TestDataLoader.exe.csproj branches/DomainObjects3/src/Tutorial/HelloWorld.exe.csproj Added Paths: ----------- branches/DomainObjects3/DomainObjects.5.1.ReSharper branches/DomainObjects3/src/Core/DomainObjects/Facade/Command/Function/Substring.cs Removed Paths: ------------- branches/DomainObjects3/DomainObjects.sln.cache This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-23 16:01:22
|
Revision: 472 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=472&view=rev Author: rbeauchamp Date: 2010-10-23 16:01:16 +0000 (Sat, 23 Oct 2010) Log Message: ----------- Modified Paths: -------------- branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-22 04:56:56
|
Revision: 471 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=471&view=rev Author: rbeauchamp Date: 2010-10-22 04:56:50 +0000 (Fri, 22 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/DomainObjects.5.1.ReSharper branches/DomainObjectsToEF/src/Core/DomainObjects/Cache/ObjectCache.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/Parameter.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SelectByPkCommandBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/Class.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/CollectionRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/IntersectionTable.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/ReferenceRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/RootClass.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelDeleteStatement.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelUpdateStatement.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/RowReader.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/Collection.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/FieldRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/Reference.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/DescriptorRepository.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/FieldDescriptorReference.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/MetadataExtensions.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectSetBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs branches/DomainObjectsToEF/src/Core/DomainObjects/PersistenceBroker.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Proxy/InMemoryReferenceFacade.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/BindManager.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/BoundObjectSet.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/InstanceReorderingStrategy.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/TypeReorderingStrategy.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/Command/SqlServer/ServerSideSequencerInsertCommandBuilder.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/Entity/QueryTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/EditDescriptorRepositoryTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/RepositoryFactoryTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-21 03:25:28
|
Revision: 470 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=470&view=rev Author: rbeauchamp Date: 2010-10-21 03:25:22 +0000 (Thu, 21 Oct 2010) Log Message: ----------- - Implemented the substring function Modified Paths: -------------- branches/DomainObjectsToEF/src/Core/DomainObjects.Core.dll.csproj Added Paths: ----------- branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Function/Substring.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-20 14:17:30
|
Revision: 469 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=469&view=rev Author: rbeauchamp Date: 2010-10-20 14:17:21 +0000 (Wed, 20 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/EditDescriptorRepositoryTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/RepositoryFactoryTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-20 13:27:41
|
Revision: 468 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=468&view=rev Author: rbeauchamp Date: 2010-10-20 13:27:35 +0000 (Wed, 20 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/resource/Repository.xml branches/DomainObjectsToEF/src/Core/DomainObjects/Cache/ObjectCache.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/Parameter.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SelectByPkCommandBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/Class.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/CollectionRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/IntersectionTable.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/ReferenceRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/RootClass.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelDeleteStatement.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelUpdateStatement.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/RowReader.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/Collection.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/FieldRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/Reference.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/DescriptorRepository.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/FieldDescriptorReference.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/MetadataExtensions.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectSetBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs branches/DomainObjectsToEF/src/Core/DomainObjects/PersistenceBroker.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Proxy/InMemoryReferenceFacade.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/BindManager.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/BoundObjectSet.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/InstanceReorderingStrategy.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/TypeReorderingStrategy.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/Command/SqlServer/ServerSideSequencerInsertCommandBuilder.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-16 06:04:25
|
Revision: 467 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=467&view=rev Author: rbeauchamp Date: 2010-10-16 06:04:18 +0000 (Sat, 16 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/resource/Repository.xml branches/DomainObjectsToEF/src/Common/DomainObjects/Maybe.cs branches/DomainObjectsToEF/src/Common/DomainObjects/Metadata/ClassDescriptor.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/Column.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/ScalarFunction.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/Class.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/ITableMappedObject.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/IntersectionTable.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/MtoNCollectionRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/SelectField.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Expression/Field.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Expression/Null.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Function/Case.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Function/ConvertTo.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Function/RowNumber.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/InsertByQuery.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Query.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/ScalarQuery.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/UpdateByCriteria.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/Collection.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/IFieldCollection.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/IntKey.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Transaction/ITransactionSetAware.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/DescriptorRepository.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/Tool/Generator/RepositoryGenerator.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectGraphBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Proxy/InMemoryRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/BoundObjectSet.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/InstanceReorderingStrategy.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/ObjectTransaction.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/TypeReorderingStrategy.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleSequenceCommandBuilder.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/InternalDomainObjectsTestFixture.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/CollectionTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/EditDescriptorRepositoryTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/ObjectTransactionTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/RepositoryFactoryTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestType/Service/TransactionSetAwareValidator.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestType/Service/TransactionSetAwareValidatorService.cs Removed Paths: ------------- branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestType/Service/ReorderValidationService.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestType/Service/ReorderValidator.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-15 06:12:00
|
Revision: 466 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=466&view=rev Author: rbeauchamp Date: 2010-10-15 06:11:54 +0000 (Fri, 15 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/src/Common/DomainObjects/Contract/Assert.cs branches/DomainObjectsToEF/src/Common/DomainObjects/FunctionalExtensions.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/Class.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/FieldRelationship.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/BoundObjectSet.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/ObjectTransaction.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/TypeReorderingStrategy.cs branches/DomainObjectsToEF/src/Core/DomainObjects.Core.dll.csproj branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/DomainObjectGeneratorTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs Added Paths: ----------- branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/InstanceReorderingStrategy.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-15 02:04:12
|
Revision: 465 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=465&view=rev Author: rbeauchamp Date: 2010-10-15 02:04:06 +0000 (Fri, 15 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Added Paths: ----------- branches/DomainObjectsToEF/src/ToolsTest/ Removed Paths: ------------- branches/DomainObjectsToEF/src/DomainObjects.ToolsTest.dll/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-14 11:22:09
|
Revision: 464 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=464&view=rev Author: rbeauchamp Date: 2010-10-14 11:22:02 +0000 (Thu, 14 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Added Paths: ----------- branches/DomainObjectsToEF/src/DomainObjects.ToolsTest.dll/ branches/DomainObjectsToEF/src/DomainObjects.ToolsTest.dll/DomainObjects.ToolsTest/ branches/DomainObjectsToEF/src/DomainObjects.ToolsTest.dll/DomainObjects.ToolsTest/DomainObjectsGeneratorTests.cs branches/DomainObjectsToEF/src/DomainObjects.ToolsTest.dll/DomainObjects.ToolsTest.dll.csproj branches/DomainObjectsToEF/src/DomainObjects.ToolsTest.dll/Properties/ branches/DomainObjectsToEF/src/DomainObjects.ToolsTest.dll/Properties/AssemblyInfo.cs branches/DomainObjectsToEF/src/DomainObjects.ToolsTest.dll/Resource/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-14 11:18:45
|
Revision: 463 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=463&view=rev Author: rbeauchamp Date: 2010-10-14 11:18:39 +0000 (Thu, 14 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/DomainObjects.sln branches/DomainObjectsToEF/src/Common/DomainObjects/Metadata/ClassDescriptor.cs branches/DomainObjectsToEF/src/Common/DomainObjects.Common.dll.csproj branches/DomainObjectsToEF/src/Core/DomainObjects.Core.dll.csproj branches/DomainObjectsToEF/src/Documentation/DomainObjects.Documentation.csproj branches/DomainObjectsToEF/src/DomainObjectGen/DomainObjectGen.exe.csproj branches/DomainObjectsToEF/src/Entity/DomainObjects.Entity.dll.csproj branches/DomainObjectsToEF/src/Extensions/DomainObjects.Extensions.dll.csproj branches/DomainObjectsToEF/src/RepositoryGen/RepositoryGen.exe.csproj branches/DomainObjectsToEF/src/Test/DomainObjects.Test/Domain/Product.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/Domain/TableFour.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/InternalDomainObjectsTestFixture.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test/TestFixture/EditDescriptorRepositoryTests.cs branches/DomainObjectsToEF/src/Test/DomainObjects.Test.dll.csproj branches/DomainObjectsToEF/src/TestDataLoader/TestDataLoader.exe.csproj branches/DomainObjectsToEF/src/Tutorial/HelloWorld.exe.csproj Added Paths: ----------- branches/DomainObjectsToEF/src/Test/DomainObjects.Test/Domain/ReferenceType.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-13 10:45:04
|
Revision: 462 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=462&view=rev Author: rbeauchamp Date: 2010-10-13 10:44:58 +0000 (Wed, 13 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/DerivedColumn.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/ConcreteTypeConstraintHandler.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/Reference.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/Tool/Generator/DomainObjectGenerator.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectSetBuilder.cs branches/DomainObjectsToEF/src/DomainObjectGen/DomainObjects/Tools/DomainObjectGen/EntryPoint.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/Command/Access/AccessIdentityCommandBuilder.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/Command/Access/DbModel/AccessDbModelSelectStatement.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleSequenceCommandBuilder.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/Command/SqlStatement/DbModel/SqlServer/SqlServer2005DbModelSelectStatement.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/DataProvider/MySql/MySqlDataProvider.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs branches/DomainObjectsToEF/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/SqlServer2000DataProvider.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-08 09:48:54
|
Revision: 461 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=461&view=rev Author: rbeauchamp Date: 2010-10-08 09:48:48 +0000 (Fri, 08 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/src/Core/DomainObjects/Conversion/FieldConversionException.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/Parameter.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/Column.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelUpdateStatement.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/SetParameter.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Expression/ColumnField.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Expression/Null.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Function/Case.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Function/Count.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/InsertByQuery.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/DatabaseSession.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/FieldConversion.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Domain/Identity.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Transaction/BindUtil.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/Tool/Generator/DomainObjectGenerator.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Proxy/ProxyServices.cs branches/DomainObjectsToEF/src/DomainObjectGen/DomainObjects/Tools/DomainObjectGen/EntryPoint.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-07 10:57:21
|
Revision: 460 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=460&view=rev Author: rbeauchamp Date: 2010-10-07 10:57:14 +0000 (Thu, 07 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/src/Common/DomainObjects/Maybe.cs branches/DomainObjectsToEF/src/Common/DomainObjects/Metadata/CollectionDescriptor.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Configuration/DomainObjectsConfiguration.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Conversion/FieldConversionException.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/Parameter.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSelectStatement.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/Column.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/DbSchemaColumn.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/DerivedColumn.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/OptionClause.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelInsertStatement.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/SelectField.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs branches/DomainObjectsToEF/src/Core/DomainObjects/DbAccess/RowReader.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/DeleteByCriteria.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Expression/Field.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/InsertByQuery.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/Query.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/ScalarQuery.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/Command/UpdateByCriteria.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Facade/DatabaseSession.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/DescriptorRepository.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Metadata/Tool/Generator/RepositoryGenerator.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectGraphBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/ObjectAccess/ObjectSetBuilder.cs branches/DomainObjectsToEF/src/Core/DomainObjects/PersistenceBroker.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Proxy/InMemoryReferenceFacade.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Transaction/BindManager.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-05 10:11:10
|
Revision: 459 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=459&view=rev Author: rbeauchamp Date: 2010-10-05 10:11:04 +0000 (Tue, 05 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/src/Core/DomainObjects/Proxy/InMemoryRelationship.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2010-10-05 09:52:22
|
Revision: 458 http://domainobjects.svn.sourceforge.net/domainobjects/?rev=458&view=rev Author: rbeauchamp Date: 2010-10-05 09:52:16 +0000 (Tue, 05 Oct 2010) Log Message: ----------- - Replacing null with Maybe to be explicit about when null is allowed as a parameter and as a return value. Modified Paths: -------------- branches/DomainObjectsToEF/src/Common/DomainObjects/Maybe.cs branches/DomainObjectsToEF/src/Common/DomainObjects.Common.dll.csproj branches/DomainObjectsToEF/src/Core/DomainObjects/Collections/Extensions.cs branches/DomainObjectsToEF/src/Core/DomainObjects/Proxy/InMemoryRelationship.cs Added Paths: ----------- branches/DomainObjectsToEF/src/Common/DomainObjects/FunctionalExtensions.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |