domainobjects-subversion Mailing List for DomainObjects for .NET (Page 9)
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...> - 2007-03-08 16:47:18
|
Revision: 282 http://svn.sourceforge.net/domainobjects/?rev=282&view=rev Author: rbeauchamp Date: 2007-03-08 08:00:34 -0800 (Thu, 08 Mar 2007) Log Message: ----------- - Added ability to cache and retrieve a Field by key. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.cs trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCacheFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/Field.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/GeneratedReferencePathTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2007-03-08 14:30:12
|
Revision: 281 http://svn.sourceforge.net/domainobjects/?rev=281&view=rev Author: rbeauchamp Date: 2007-03-08 06:30:07 -0800 (Thu, 08 Mar 2007) Log Message: ----------- - Added UpdateByCriteria.Top() to generate an 'UPDATE TOP()' SQL statement from an UpdateByCriteria. - Added DomainObjectsTestFixture.GetUniqueString() to generate unique unit test strings so that tests can be run multiple times against the same unit test database without interfering with each other (e.g., because of unique key constraints...) Modified Paths: -------------- trunk/DomainObjects2/SampleApplications/BankOfDavis/BankOfDavis.suo trunk/DomainObjects2/resource/Repository.xml 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/Select/ObjectModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/UpdateCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/UpdateByCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Test/DomainObjectsTestFixture.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/UpdateByCriteriaTests.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...> - 2007-03-03 21:43:30
|
Revision: 280 http://svn.sourceforge.net/domainobjects/?rev=280&view=rev Author: rbeauchamp Date: 2007-03-03 13:43:28 -0800 (Sat, 03 Mar 2007) Log Message: ----------- - Implemented ability to return the count of object set instances or data set rows that would be returned by a query. - Implemented Query.Exists() Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/IQuery.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/ObjectModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/InsertByQuery.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.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: <rbe...@us...> - 2007-03-02 16:26:27
|
Revision: 279 http://svn.sourceforge.net/domainobjects/?rev=279&view=rev Author: rbeauchamp Date: 2007-03-02 08:19:28 -0800 (Fri, 02 Mar 2007) Log Message: ----------- Implementing ability to return the count of object set instances or data set rows that would be returned by a query. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ColumnField.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.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: <rbe...@us...> - 2007-03-01 16:09:08
|
Revision: 278 http://svn.sourceforge.net/domainobjects/?rev=278&view=rev Author: rbeauchamp Date: 2007-03-01 08:09:06 -0800 (Thu, 01 Mar 2007) Log Message: ----------- Implementing Query.GetCount() and Query.Exists() Modified Paths: -------------- trunk/DomainObjects2/SampleApplications/BankOfDavis/BankOfDavis.suo trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Database.csproj trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/DomainSchema/ConceptualModel.orm 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/Function/Count.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Diagnostics/DatabaseAccessEvent.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/FunctionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectGraphTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PrefetchTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Scripts/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Scripts/BankOfDavisDDL.sql trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/CommandMonitor.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ja...@us...> - 2007-02-20 00:44:33
|
Revision: 277 http://svn.sourceforge.net/domainobjects/?rev=277&view=rev Author: jansa Date: 2007-02-19 16:44:30 -0800 (Mon, 19 Feb 2007) Log Message: ----------- Updated support for MySql (using the .NET 2.0 adapter). 196 unit tests passed, 7 failed (the SQL Server specific tests). Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/Parameter.cs trunk/DomainObjects2/src/Extensions/DomainObjects.Extensions.dll.csproj trunk/DomainObjects2/testbed/mysql/CreateDatabase.SQL Added Paths: ----------- trunk/DomainObjects2/bin/connectors/mysql5/ trunk/DomainObjects2/bin/connectors/mysql5/CHANGES trunk/DomainObjects2/bin/connectors/mysql5/COPYING trunk/DomainObjects2/bin/connectors/mysql5/Client.build trunk/DomainObjects2/bin/connectors/mysql5/Driver/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/MySql.Data.2005.csproj trunk/DomainObjects2/bin/connectors/mysql5/Driver/Properties/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/Properties/AssemblyInfo.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/CharSetMap.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/ClientAPI.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/ClientDriver.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/CommandBuilder.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/CompressedStream.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Connection.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Crypt.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Driver.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/EmbeddedAPI.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/EmbeddedDriver.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Exception.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Field.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/ISSchemaProvider.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Installer.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Logger.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MySqlClientFactory.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MySqlConnectionStringBuilder.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MySqlError.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MySqlHelper.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MySqlPool.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MySqlPoolManager.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MySqlPromotableTransaction.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MySqlStream.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/MysqlDefs.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/NativeDriver.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/PerformanceMonitor.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/PreparableStatement.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/ProcedureCache.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/ReservedWords.txt trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Resources.Designer.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Resources.resources trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Resources.resx trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/SchemaProvider.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Statement.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/StoredProcedure.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MetaData.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlBinary.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlBit.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlByte.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlConversionException.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlDateTime.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlDecimal.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlDouble.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlInt16.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlInt32.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlInt64.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlSingle.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlString.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlTime.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlUByte.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlUInt16.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlUInt32.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlUInt64.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/Types/MySqlValue.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/UsageAdvisor.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbCommand.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbCommandBuilder.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbConnection.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbConnection.resx trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbDataReader.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbParameter.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbParameterCollection copy.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbParameterCollection.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/base/DbTransaction.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/command.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/ContextString.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/NamedPipeStream.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/NativeMethods.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/Platform.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/SHA1.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/SharedMemoryStream.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/SocketStream.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/StreamCreator.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/Version.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/common/WinCE.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/dataadapter.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/datareader.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlCommand.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlCommandBuilder.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlConnection.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlConnectionStringBuilder.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlDataAdapter.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlDataReader.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlException.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlHelper.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlParameter.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlParameterCollection.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/docs/MySqlTransaction.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/parameter.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/parameter_collection.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/transaction.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/Adler32.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/Deflate.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/InfBlocks.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/InfCodes.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/InfTree.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/Inflate.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/StaticTree.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/SupportClass.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/Tree.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/ZInputStream.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/ZOutputStream.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/ZStream.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/ZStreamException.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/Source/zlib/Zlib.cs trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/Debug/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/Debug/MySql.Data.dll trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/Debug/MySql.Data.pdb trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/Debug/doc.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/release/ trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/release/MySql.Data.Tests.dll trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/release/MySql.Data.dll trunk/DomainObjects2/bin/connectors/mysql5/Driver/bin/net-2.0/release/MySql.Data.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/doc.xml trunk/DomainObjects2/bin/connectors/mysql5/Driver/docs/ trunk/DomainObjects2/bin/connectors/mysql5/EXCEPTIONS trunk/DomainObjects2/bin/connectors/mysql5/README trunk/DomainObjects2/bin/connectors/mysql5/Release Notes.txt trunk/DomainObjects2/bin/connectors/mysql5/Samples/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/Async/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/Async/cs/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/Async/cs/App.ico trunk/DomainObjects2/bin/connectors/mysql5/Samples/Async/cs/AssemblyInfo.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Async/cs/Async.csproj trunk/DomainObjects2/bin/connectors/mysql5/Samples/Async/cs/Form1.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Async/cs/Form1.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/App.ico trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/AssemblyInfo.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/App.ico trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/AssemblyInfo.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/Form1.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/Form1.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/Form2.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/Form2.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/PerfSample.csproj trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/PerfSample.csproj.user trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/PerfSample.sln trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Backup/PerfSample.suo trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Form1.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Form1.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Form2.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/Form2.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/PerfSample.csproj trunk/DomainObjects2/bin/connectors/mysql5/Samples/PerfSample/PerfSample.sln trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/AssemblyInfo.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/Form1.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/Form1.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/MobileExplorer.csdproj trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/MobileExplorer.sln trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/MobileExplorer.suo trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/NewServerDialog.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Pocket PC/MobileExplorer/NewServerDialog.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Default.sql trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Form1.Designer.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Form1.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Form1.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Profiling.csproj trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Program.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Properties/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Properties/AssemblyInfo.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Properties/Resources.Designer.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Properties/Resources.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Properties/Settings.Designer.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/Profiling/cs/Properties/Settings.settings trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/CS/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/CS/App.ico trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/CS/AssemblyInfo.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/CS/Form1.cs trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/CS/Form1.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/CS/TableEditor.build trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/CS/TableEditor.csproj trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/VB/ trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/VB/AssemblyInfo.vb trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/VB/Form1.resx trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/VB/Form1.vb trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/VB/TableEditor.build trunk/DomainObjects2/bin/connectors/mysql5/Samples/TableEditor/VB/TableEditor.vbproj trunk/DomainObjects2/bin/connectors/mysql5/doc/ trunk/DomainObjects2/bin/connectors/mysql5/doc/MySql.Data.chm trunk/DomainObjects2/bin/connectors/mysql5/testsuite/ trunk/DomainObjects2/bin/connectors/mysql5/testsuite/AsyncTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/BaseTest.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/BlobTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/CharacterSetTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/CommandBuilderTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/CommandTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/ConnectionStringBuilder.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/ConnectionTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/CultureTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/CursorTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/DataAdapterTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/DataReaderTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/DataSetTest.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/DataTypeTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/DateTimeTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/EventTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/ExceptionTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/GetSchemaTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/InterfaceTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/LanguageTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/MicroPerfTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/MySql.Data.Tests.2003.csproj trunk/DomainObjects2/bin/connectors/mysql5/testsuite/MySql.Data.Tests.2003.csproj.user trunk/DomainObjects2/bin/connectors/mysql5/testsuite/MySql.Data.Tests.2005.csproj trunk/DomainObjects2/bin/connectors/mysql5/testsuite/MySql.Data.Tests.2005.csproj.user trunk/DomainObjects2/bin/connectors/mysql5/testsuite/MySqlHelperTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/ParameterTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/PerfMonTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/PoolingTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/PreparedStatements.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/Properties/ trunk/DomainObjects2/bin/connectors/mysql5/testsuite/Properties/AssemblyInfo.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/SimpleTransactions.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/StoredProcedure.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/StressTests.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/Syntax.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/Syntax2.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/Threading.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/TimeoutAndCancel.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/Transactions.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/UsageAdvisor.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/Utils.cs trunk/DomainObjects2/bin/connectors/mysql5/testsuite/configs/ trunk/DomainObjects2/bin/connectors/mysql5/testsuite/configs/mysql-41.config trunk/DomainObjects2/bin/connectors/mysql5/testsuite/configs/mysql-50.config trunk/DomainObjects2/bin/connectors/mysql5/testsuite/configs/mysql-51.config trunk/DomainObjects2/bin/connectors/mysql5/testsuite/old.MySql.Data.Tests.2005.csproj trunk/DomainObjects2/bin/connectors/mysql5/testsuite/test2.csproj.user Removed Paths: ------------- trunk/DomainObjects2/bin/connectors/mysql/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2007-02-06 15:50:16
|
Revision: 276 http://svn.sourceforge.net/domainobjects/?rev=276&view=rev Author: rbeauchamp Date: 2007-02-06 07:50:15 -0800 (Tue, 06 Feb 2007) Log Message: ----------- - Updating sample application Modified Paths: -------------- trunk/DomainObjects2/SampleApplications/BankOfDavis/BankOfDavis.suo trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/DomainSchema/ConceptualModel.orm This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2007-02-06 15:35:36
|
Revision: 275 http://svn.sourceforge.net/domainobjects/?rev=275&view=rev Author: rbeauchamp Date: 2007-02-06 07:35:29 -0800 (Tue, 06 Feb 2007) Log Message: ----------- - Building sample application. - Adding support for code generation from within Visual Studio. Modified Paths: -------------- trunk/DomainObjects2/DomainObjects.sln trunk/DomainObjects2/SampleApplications/BankOfDavis/BankOfDavis.suo trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Database.csproj trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/Domain.csproj trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/Installer/ trunk/DomainObjects2/Installer/Installer.vdproj trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/DomainSchema/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/DomainSchema/ConceptualModel.orm trunk/DomainObjects2/src/DslDirectiveProcessor/ trunk/DomainObjects2/src/DslDirectiveProcessor/DomainObjects.Tools.DomainObjectGen/ trunk/DomainObjects2/src/DslDirectiveProcessor/DomainObjects.Tools.DomainObjectGen/Directive.cs trunk/DomainObjects2/src/DslDirectiveProcessor/DomainObjects.Tools.DomainObjectGen/DomainObjectsDirectiveProcessor.cs trunk/DomainObjects2/src/DslDirectiveProcessor/DslDirectiveProcessor.csproj trunk/DomainObjects2/src/DslDirectiveProcessor/Properties/ trunk/DomainObjects2/src/DslDirectiveProcessor/Properties/AssemblyInfo.cs Removed Paths: ------------- trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Model/ Property Changed: ---------------- trunk/DomainObjects2/SampleApplications/BankOfDavis/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2007-01-22 07:39:00
|
Revision: 274 http://svn.sourceforge.net/domainobjects/?rev=274&view=rev Author: rbeauchamp Date: 2007-01-21 23:38:58 -0800 (Sun, 21 Jan 2007) Log Message: ----------- Updating documentation Added Paths: ----------- trunk/DomainObjects2/src/Documentation/content/xdocs/Documentation/QuickStart.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2007-01-22 07:37:50
|
Revision: 273 http://svn.sourceforge.net/domainobjects/?rev=273&view=rev Author: rbeauchamp Date: 2007-01-21 23:37:49 -0800 (Sun, 21 Jan 2007) Log Message: ----------- Creating BankOfDavis sample application. Modified Paths: -------------- trunk/DomainObjects2/DomainObjects.sln trunk/DomainObjects2/forrest.properties trunk/DomainObjects2/src/Documentation/DomainObjects.Documentation.csproj trunk/DomainObjects2/src/Documentation/content/xdocs/Site.xml Added Paths: ----------- trunk/DomainObjects2/SampleApplications/ trunk/DomainObjects2/SampleApplications/BankOfDavis/ trunk/DomainObjects2/SampleApplications/BankOfDavis/BankOfDavis.sln trunk/DomainObjects2/SampleApplications/BankOfDavis/BankOfDavis.suo trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Database.csproj trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Model/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Model/BankOfDavisConceptualModel.SQLServer.sql trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Model/BankOfDavisConceptualModel.orm trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Properties/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Database/Properties/AssemblyInfo.cs trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/Domain.csproj trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/Properties/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Domain/Properties/AssemblyInfo.cs trunk/DomainObjects2/SampleApplications/BankOfDavis/Service/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Service/Properties/ trunk/DomainObjects2/SampleApplications/BankOfDavis/Service/Properties/AssemblyInfo.cs trunk/DomainObjects2/SampleApplications/BankOfDavis/Service/Service.csproj trunk/DomainObjects2/SampleApplications/BankOfDavis/WebClient/ trunk/DomainObjects2/SampleApplications/BankOfDavis/WebClient/Homepage.aspx trunk/DomainObjects2/SampleApplications/BankOfDavis/WebClient/Properties/ trunk/DomainObjects2/SampleApplications/BankOfDavis/WebClient/Properties/AssemblyInfo.cs trunk/DomainObjects2/SampleApplications/BankOfDavis/WebClient/Web.config trunk/DomainObjects2/SampleApplications/BankOfDavis/WebClient/WebClient.csproj trunk/DomainObjects2/src/Documentation/content/xdocs/Documentation/BankOfDavis/ trunk/DomainObjects2/src/Documentation/content/xdocs/Documentation/BankOfDavis/Introduction.xml trunk/DomainObjects2/src/Documentation/content/xdocs/Documentation/BankOfDavis/SetUpYourDevelopmentEnvironment.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2007-01-22 07:34:22
|
Revision: 272 http://svn.sourceforge.net/domainobjects/?rev=272&view=rev Author: rbeauchamp Date: 2007-01-21 23:34:21 -0800 (Sun, 21 Jan 2007) Log Message: ----------- Updating documentation Removed Paths: ------------- trunk/DomainObjects2/src/Documentation/content/xdocs/Welcome/QuickStart.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2007-01-10 17:12:25
|
Revision: 271 http://svn.sourceforge.net/domainobjects/?rev=271&view=rev Author: dkondratiuk Date: 2007-01-10 09:12:19 -0800 (Wed, 10 Jan 2007) Log Message: ----------- * Added support to Int64 primary keys, bigint identity columns now are supported * The SECOND_OBJECT table primary key were modified and now it is a bigint column. * Added support to union queries in Oracle * Some test were fixed in OracleDataProvider * Added the SQLServerSpecific category to the OrderByNewId test * Added the DoesNotWithWithOracle to the InsertByQueryTests test Modified Paths: -------------- trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/Key.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.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/Command/SqlServer/ServerSideSequencerInsertCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Manager/Manager.exe.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/InsertByQueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/UnitTestCategory.cs trunk/DomainObjects2/testbed/CreateDatabase.sql trunk/DomainObjects2/testbed/CreateDatabaseWithoutIdentity.sql trunk/DomainObjects2/testbed/ServerSideSequencerScript.sql trunk/DomainObjects2/testbed/oracle/CreateDatabase.SQL Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/LongKey.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2007-01-10 14:39:32
|
Revision: 270 http://svn.sourceforge.net/domainobjects/?rev=270&view=rev Author: dkondratiuk Date: 2007-01-10 06:39:30 -0800 (Wed, 10 Jan 2007) Log Message: ----------- The CompleteCriteriaList, OrderByFieldList and GroupByFieldList properties of the Criteria class now are public, so the developer can check if some criteria, group by or order by field were added or not. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Criteria.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CriteriaTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2007-01-02 01:27:10
|
Revision: 269 http://svn.sourceforge.net/domainobjects/?rev=269&view=rev Author: rbeauchamp Date: 2007-01-01 17:27:08 -0800 (Mon, 01 Jan 2007) Log Message: ----------- - Added documentation. - Removed Type parameter from Criteria.AddInSubquery as it can be derived. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/InternalQuery.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/Facade/Command/Criteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ColumnField.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/Field.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.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: <rbe...@us...> - 2007-01-01 23:59:41
|
Revision: 268 http://svn.sourceforge.net/domainobjects/?rev=268&view=rev Author: rbeauchamp Date: 2007-01-01 15:59:40 -0800 (Mon, 01 Jan 2007) Log Message: ----------- - Better encapsulating/hiding internal methods by changing IField to an abstract class. Added Paths: ----------- trunk/DomainObjects2/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...> - 2007-01-01 23:56:28
|
Revision: 267 http://svn.sourceforge.net/domainobjects/?rev=267&view=rev Author: rbeauchamp Date: 2007-01-01 15:56:27 -0800 (Mon, 01 Jan 2007) Log Message: ----------- - Better encapsulating/hiding internal methods by changing IField to an abstract class. - Cleanup of files removed from solution. Modified Paths: -------------- 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/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/DbModel/IDbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/ISearchConditionContainer.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/Function/ScalarFunction.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/Field.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/FieldRelationship.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/ObjectModelDeleteStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelInsertStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelUpdateStatement.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/SetParameter.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/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/InSubqueryCriteria.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/Facade/Command/Criteria.cs 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/Null.cs 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/Lower.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Max.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/NewId.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/Function/Upper.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/InsertByQuery.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/Command/UpdateByCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/DatabaseCompatibilityTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Expression/IConvertibleField.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/DataSetSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/QueryFactory.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/SetParameter.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/AfterInsertEventHandler.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/PrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ShortPrimaryKey.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/AbstractProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ListProxy.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-12-31 01:23:24
|
Revision: 266 http://svn.sourceforge.net/domainobjects/?rev=266&view=rev Author: rbeauchamp Date: 2006-12-30 17:23:23 -0800 (Sat, 30 Dec 2006) Log Message: ----------- - Updated API docs. - Moved Criteria.NO_MAXIMUM_COUNT to the Query class as it makes more sense there. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Criteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-12-29 20:34:47
|
Revision: 265 http://svn.sourceforge.net/domainobjects/?rev=265&view=rev Author: dkondratiuk Date: 2006-12-29 12:34:44 -0800 (Fri, 29 Dec 2006) Log Message: ----------- Oracle compatible: The field order in the where clause were changed (the id field is in the right side of the equality) The SelectFields property of the Query class now is public so the developer can check which field were added. The InSubqueryCriteria now is public an this class exposes the ObjectType so the developer can check which InSubQueryCriteria is in a criteria class Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Join.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/InSubqueryCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-12-23 13:14:05
|
Revision: 264 http://svn.sourceforge.net/domainobjects/?rev=264&view=rev Author: rbeauchamp Date: 2006-12-23 05:14:03 -0800 (Sat, 23 Dec 2006) Log Message: ----------- - Added documentation. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Criteria.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: <rbe...@us...> - 2006-12-20 06:48:32
|
Revision: 263 http://svn.sourceforge.net/domainobjects/?rev=263&view=rev Author: rbeauchamp Date: 2006-12-19 22:48:30 -0800 (Tue, 19 Dec 2006) Log Message: ----------- - Updated documentation. Modified Paths: -------------- 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: <rbe...@us...> - 2006-12-20 06:14:16
|
Revision: 262 http://svn.sourceforge.net/domainobjects/?rev=262&view=rev Author: rbeauchamp Date: 2006-12-19 22:14:15 -0800 (Tue, 19 Dec 2006) Log Message: ----------- - Added ability to 'LeftOuterJoin' a sub class in a reference path. This means that the row will be included in the joined rows whether or not the row is an instance of the sub class. See the unit test QueryTests.LeftOuterJoinSubClass() for an explanation. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/SearchConditionClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/Class.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/SubClass.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/SubClassRelationship.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Criteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/NewId.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/InsertByQuery.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/UpdateByCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IReconstructionAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/ITransactionSetAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/Tool/Generator/DomainObjectGenerator.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: <rbe...@us...> - 2006-12-17 09:07:47
|
Revision: 261 http://svn.sourceforge.net/domainobjects/?rev=261&view=rev Author: rbeauchamp Date: 2006-12-17 01:07:45 -0800 (Sun, 17 Dec 2006) Log Message: ----------- - Preparing for release 1.1.1. Modified Paths: -------------- trunk/DomainObjects2/build.xml trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/UpdateByCriteria.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/InsertByQueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/UpdateByCriteriaTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/UnitTestCategory.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-12-17 08:40:30
|
Revision: 260 http://svn.sourceforge.net/domainobjects/?rev=260&view=rev Author: rbeauchamp Date: 2006-12-17 00:40:29 -0800 (Sun, 17 Dec 2006) Log Message: ----------- - Added ability to insert via a query. - Preparing for release 1.1.1. Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/IQuery.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-12-17 08:39:51
|
Revision: 259 http://svn.sourceforge.net/domainobjects/?rev=259&view=rev Author: rbeauchamp Date: 2006-12-17 00:39:49 -0800 (Sun, 17 Dec 2006) Log Message: ----------- Modified Paths: -------------- trunk/DomainObjects2/ReleaseLog.txt trunk/DomainObjects2/build.xml trunk/DomainObjects2/src/Core/AssemblyInfo.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/InsertCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectCommandBuilder.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/ObjectModel/BatchStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/IInsertByQuery.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelInsertStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Select/ObjectModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/InsertByQuery.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Query.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/UpdateByCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Documentation/content/xdocs/Welcome/Features.xml trunk/DomainObjects2/src/Documentation/content/xdocs/index.xml trunk/DomainObjects2/src/DomainObjectGen/assemblyinfo.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/TestFixture/UpdateByCriteriaTests.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/Tutorial/AssemblyInfo.cs Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/InsertByQueryTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/IQuery.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-12-16 22:08:25
|
Revision: 258 http://svn.sourceforge.net/domainobjects/?rev=258&view=rev Author: rbeauchamp Date: 2006-12-16 14:08:23 -0800 (Sat, 16 Dec 2006) Log Message: ----------- - Adding ability to insert via a query. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelInsertStatement.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/UpdateByCriteria.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 Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/BatchStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/IInsertByQuery.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/IQuery.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/InsertByQuery.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |