├── .gitignore ├── LICENSE.TXT ├── README.markdown ├── package └── Catnap.nuspec ├── rakefile.rb ├── src ├── Catnap.IntegrationTests │ ├── BasicTests.cs │ ├── BootstrapperHelper.cs │ ├── Catnap.IntegrationTests.csproj │ ├── Migrations │ │ ├── CreateSchema_MySql.cs │ │ ├── CreateSchema_SqlServerCe.cs │ │ └── CreateSchema_Sqlite.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ ├── default.connections.config │ └── packages.config ├── Catnap.Tests.Core │ ├── Catnap.Tests.Core.csproj │ ├── DomainMapping.cs │ ├── Models │ │ ├── Entity.cs │ │ ├── Forum.cs │ │ ├── Person.cs │ │ └── Post.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Catnap.UnitTests │ ├── BasicTests.cs │ ├── Catnap.UnitTests.csproj │ ├── ConditionTests.cs │ ├── DbCommandSpecTests.cs │ ├── LogTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SqliteValueConverterTests.cs │ └── packages.config ├── Catnap.sln ├── Catnap │ ├── Catnap.csproj │ ├── Citeria │ │ ├── Conditions │ │ │ ├── ColumnCondition.cs │ │ │ ├── ColumnValueCondition.cs │ │ │ ├── ColumnValuesCondition.cs │ │ │ ├── Criteria.cs │ │ │ ├── Equal.cs │ │ │ ├── GreaterThan.cs │ │ │ ├── GreaterThanOrEqual.cs │ │ │ ├── IConditionMarker.cs │ │ │ ├── ICriteria.cs │ │ │ ├── IsIn.cs │ │ │ ├── IsNotNull.cs │ │ │ ├── IsNull.cs │ │ │ ├── LeftRightCondition.cs │ │ │ ├── LessThan.cs │ │ │ ├── LessThanOrEqual.cs │ │ │ ├── NotEqual.cs │ │ │ ├── PropertyCondition.cs │ │ │ ├── PropertyValueCondition.cs │ │ │ ├── PropertyValuesCondition.cs │ │ │ ├── ValueCondition.cs │ │ │ └── ValuesCondition.cs │ │ ├── CriteriaPredicateBuilder.cs │ │ └── PredicateBuilder.cs │ ├── Configuration │ │ ├── IConfigurator.cs │ │ └── Impl │ │ │ └── Configurator.cs │ ├── Criteria.cs │ ├── Database │ │ ├── BaseDbAdapter.cs │ │ ├── IDbAdapter.cs │ │ ├── IDbValueConverter.cs │ │ ├── MySQL │ │ │ ├── MySqlAdapter.cs │ │ │ └── MySqlValueConverter.cs │ │ ├── NullDbAdapter.cs │ │ ├── Parameter.cs │ │ ├── SqlServerCe │ │ │ ├── SqlServerCeAdapter.cs │ │ │ └── SqlServerCeValueConverter.cs │ │ ├── Sqlite │ │ │ ├── BaseSqliteAdapter.cs │ │ │ ├── SqliteAdapter.cs │ │ │ └── SqliteValueConverter.cs │ │ ├── Types │ │ │ ├── BooleanIntType.cs │ │ │ ├── DateTimeTicksType.cs │ │ │ ├── DefaultType.cs │ │ │ ├── GuidStringType.cs │ │ │ ├── IType.cs │ │ │ ├── TimespanTicksType.cs │ │ │ └── TypeHelper.cs │ │ └── ValueConverter.cs │ ├── DbAdapter.cs │ ├── DbCommandFactory.cs │ ├── DbCommandSpec.cs │ ├── Entity.cs │ ├── EntityEqualityComaparer.cs │ ├── EntitySessionKey.cs │ ├── Exceptions │ │ ├── ExpectedColumnMissingException.cs │ │ ├── LazyLoadException.cs │ │ └── SessionDisposedException.cs │ ├── Extensions │ │ ├── ExpressionExtensions.cs │ │ ├── IntExtensions.cs │ │ ├── ObjectExtensions.cs │ │ └── TypeExtensions.cs │ ├── Fluently.cs │ ├── IDbCommandFactory.cs │ ├── IDbCommandSpec.cs │ ├── IEntity.cs │ ├── IRepository.cs │ ├── ISession.cs │ ├── ISessionCache.cs │ ├── ISessionFactory.cs │ ├── IUnitOfWork.cs │ ├── LazyList.cs │ ├── Logging │ │ ├── ILogger.cs │ │ ├── Impl │ │ │ ├── ConsoleLogger.cs │ │ │ └── FileLogger.cs │ │ ├── Log.cs │ │ └── LogLevel.cs │ ├── Mapping │ │ ├── Access.cs │ │ ├── Conventions │ │ │ ├── BelongsToColumnNameConvention.cs │ │ │ ├── IIdMappingConventionable.cs │ │ │ ├── Impl │ │ │ │ └── IdMappingConvention.cs │ │ │ └── ListParentIdColumnNameConvention.cs │ │ ├── Generator.cs │ │ ├── IAccessStrategy.cs │ │ ├── IAccessStrategyFactory.cs │ │ ├── IBelongsToPropertyMap.cs │ │ ├── IBelongsToPropertyMapDescriptor.cs │ │ ├── IDomainMap.cs │ │ ├── IDomainMappable.cs │ │ ├── IEntityMap.cs │ │ ├── IEntityMapDescriptor.cs │ │ ├── IEntityMappable.cs │ │ ├── IIdPropertyMap.cs │ │ ├── IIdPropertyMappable.cs │ │ ├── IIdValueGenerator.cs │ │ ├── IListPropertyMap.cs │ │ ├── IListPropertyMapDescriptor.cs │ │ ├── IListPropertyMappable.cs │ │ ├── IPropertyMap.cs │ │ ├── IPropertyMapDescriptor.cs │ │ ├── IPropertyMapWithColumn.cs │ │ ├── IPropertyMapWithColumnMappable.cs │ │ ├── IPropertyMappable.cs │ │ └── Impl │ │ │ ├── AccessStrategy.cs │ │ │ ├── BasePropertyMap.cs │ │ │ ├── BelongsToPropertyMap.cs │ │ │ ├── DomainMap.cs │ │ │ ├── EntityMap.cs │ │ │ ├── FieldAccessStrategy.cs │ │ │ ├── GuidCombGenerator.cs │ │ │ ├── GuidGenerator.cs │ │ │ ├── IdPropertyMap.cs │ │ │ ├── ListPropertyMap.cs │ │ │ ├── PropertyAccessStrategy.cs │ │ │ ├── PropertyWithColumnMap.cs │ │ │ └── ValuePropertyMap.cs │ ├── Maps │ │ └── Impl │ │ │ └── EntityMap.cs │ ├── Migration │ │ ├── BaseMigration.cs │ │ ├── DatabaseMigratorUtility.cs │ │ └── IDatabaseMigration.cs │ ├── NullSessionCache.cs │ ├── Repository.cs │ ├── Session.cs │ ├── SessionCache.cs │ ├── SessionFactory.cs │ └── UnitOfWork.cs ├── CommonAssemblyInfo.cs └── packages │ ├── Machine.Specifications.0.4.13.0 │ ├── Machine.Specifications.0.4.13.0.nupkg │ ├── lib │ │ ├── Machine.Specifications.TDNetRunner.dll │ │ ├── Machine.Specifications.dll │ │ └── Machine.Specifications.dll.tdnet │ └── tools │ │ ├── CommandLine.dll │ │ ├── CommandLine.xml │ │ ├── InstallResharperRunner.4.1.bat │ │ ├── InstallResharperRunner.4.5.bat │ │ ├── InstallResharperRunner.5.0 - VS2008.bat │ │ ├── InstallResharperRunner.5.0 - VS2010.bat │ │ ├── InstallResharperRunner.5.1 - VS2008.bat │ │ ├── InstallResharperRunner.5.1 - VS2010.bat │ │ ├── InstallTDNetRunner.bat │ │ ├── InstallTDNetRunnerSilent.bat │ │ ├── License.txt │ │ ├── Machine.Specifications.GallioAdapter.3.1.dll │ │ ├── Machine.Specifications.GallioAdapter.plugin │ │ ├── Machine.Specifications.ReSharperRunner.4.1.dll │ │ ├── Machine.Specifications.ReSharperRunner.4.5.dll │ │ ├── Machine.Specifications.ReSharperRunner.5.0.dll │ │ ├── Machine.Specifications.ReSharperRunner.5.1.dll │ │ ├── Machine.Specifications.Reporting.Templates.dll │ │ ├── Machine.Specifications.Reporting.dll │ │ ├── Machine.Specifications.SeleniumSupport.dll │ │ ├── Machine.Specifications.TDNetRunner.dll │ │ ├── Machine.Specifications.WatinSupport.dll │ │ ├── Machine.Specifications.dll │ │ ├── Machine.Specifications.dll.tdnet │ │ ├── Newtonsoft.Json.dll │ │ ├── Spark.dll │ │ ├── TestDriven.Framework.dll │ │ ├── ThoughtWorks.Selenium.Core.dll │ │ ├── WatiN.Core.dll │ │ ├── install.ps1 │ │ ├── mspec-clr4.exe │ │ ├── mspec-x86-clr4.exe │ │ ├── mspec-x86.exe │ │ └── mspec.exe │ ├── Moq.4.0.10827 │ ├── License.txt │ ├── Moq.4.0.10827.nupkg │ ├── Moq.chm │ └── lib │ │ ├── NET35 │ │ ├── Moq.dll │ │ ├── Moq.pdb │ │ └── Moq.xml │ │ ├── NET40 │ │ ├── Moq.dll │ │ ├── Moq.pdb │ │ └── Moq.xml │ │ └── Silverlight4 │ │ ├── Castle.Core.dll │ │ ├── Moq.Silverlight.dll │ │ ├── Moq.Silverlight.pdb │ │ └── Moq.Silverlight.xml │ ├── MySql.Data.6.4.4 │ └── lib │ │ ├── net20-cf │ │ └── mysql.data.cf.dll │ │ ├── net20 │ │ └── mysql.data.dll │ │ └── net40 │ │ └── mysql.data.dll │ ├── ShouldFluent.1.1.12.0 │ ├── ShouldFluent.1.1.12.0.nupkg │ └── lib │ │ └── Should.Fluent.dll │ ├── System.Data.SQLite.x86.1.0.80.0 │ └── lib │ │ ├── net20 │ │ ├── System.Data.SQLite.Linq.dll │ │ └── System.Data.SQLite.dll │ │ └── net40 │ │ ├── System.Data.SQLite.Linq.dll │ │ └── System.Data.SQLite.dll │ └── repositories.config └── tools └── NuGet.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/README.markdown -------------------------------------------------------------------------------- /package/Catnap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/package/Catnap.nuspec -------------------------------------------------------------------------------- /rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/rakefile.rb -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/BasicTests.cs -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/BootstrapperHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/BootstrapperHelper.cs -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/Catnap.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/Catnap.IntegrationTests.csproj -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/Migrations/CreateSchema_MySql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/Migrations/CreateSchema_MySql.cs -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/Migrations/CreateSchema_SqlServerCe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/Migrations/CreateSchema_SqlServerCe.cs -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/Migrations/CreateSchema_Sqlite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/Migrations/CreateSchema_Sqlite.cs -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/app.config -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/default.connections.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/default.connections.config -------------------------------------------------------------------------------- /src/Catnap.IntegrationTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.IntegrationTests/packages.config -------------------------------------------------------------------------------- /src/Catnap.Tests.Core/Catnap.Tests.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.Tests.Core/Catnap.Tests.Core.csproj -------------------------------------------------------------------------------- /src/Catnap.Tests.Core/DomainMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.Tests.Core/DomainMapping.cs -------------------------------------------------------------------------------- /src/Catnap.Tests.Core/Models/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.Tests.Core/Models/Entity.cs -------------------------------------------------------------------------------- /src/Catnap.Tests.Core/Models/Forum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.Tests.Core/Models/Forum.cs -------------------------------------------------------------------------------- /src/Catnap.Tests.Core/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.Tests.Core/Models/Person.cs -------------------------------------------------------------------------------- /src/Catnap.Tests.Core/Models/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.Tests.Core/Models/Post.cs -------------------------------------------------------------------------------- /src/Catnap.Tests.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.Tests.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Catnap.UnitTests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.UnitTests/BasicTests.cs -------------------------------------------------------------------------------- /src/Catnap.UnitTests/Catnap.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.UnitTests/Catnap.UnitTests.csproj -------------------------------------------------------------------------------- /src/Catnap.UnitTests/ConditionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.UnitTests/ConditionTests.cs -------------------------------------------------------------------------------- /src/Catnap.UnitTests/DbCommandSpecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.UnitTests/DbCommandSpecTests.cs -------------------------------------------------------------------------------- /src/Catnap.UnitTests/LogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.UnitTests/LogTests.cs -------------------------------------------------------------------------------- /src/Catnap.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Catnap.UnitTests/SqliteValueConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.UnitTests/SqliteValueConverterTests.cs -------------------------------------------------------------------------------- /src/Catnap.UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.UnitTests/packages.config -------------------------------------------------------------------------------- /src/Catnap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap.sln -------------------------------------------------------------------------------- /src/Catnap/Catnap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Catnap.csproj -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/ColumnCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/ColumnCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/ColumnValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/ColumnValueCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/ColumnValuesCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/ColumnValuesCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/Criteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/Criteria.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/Equal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/Equal.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/GreaterThan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/GreaterThan.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/GreaterThanOrEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/GreaterThanOrEqual.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/IConditionMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/IConditionMarker.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/ICriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/ICriteria.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/IsIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/IsIn.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/IsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/IsNotNull.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/IsNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/IsNull.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/LeftRightCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/LeftRightCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/LessThan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/LessThan.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/LessThanOrEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/LessThanOrEqual.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/NotEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/NotEqual.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/PropertyCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/PropertyCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/PropertyValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/PropertyValueCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/PropertyValuesCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/PropertyValuesCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/ValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/ValueCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/Conditions/ValuesCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/Conditions/ValuesCondition.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/CriteriaPredicateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/CriteriaPredicateBuilder.cs -------------------------------------------------------------------------------- /src/Catnap/Citeria/PredicateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Citeria/PredicateBuilder.cs -------------------------------------------------------------------------------- /src/Catnap/Configuration/IConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Configuration/IConfigurator.cs -------------------------------------------------------------------------------- /src/Catnap/Configuration/Impl/Configurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Configuration/Impl/Configurator.cs -------------------------------------------------------------------------------- /src/Catnap/Criteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Criteria.cs -------------------------------------------------------------------------------- /src/Catnap/Database/BaseDbAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/BaseDbAdapter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/IDbAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/IDbAdapter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/IDbValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/IDbValueConverter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/MySQL/MySqlAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/MySQL/MySqlAdapter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/MySQL/MySqlValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/MySQL/MySqlValueConverter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/NullDbAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/NullDbAdapter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Parameter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/SqlServerCe/SqlServerCeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/SqlServerCe/SqlServerCeAdapter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/SqlServerCe/SqlServerCeValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/SqlServerCe/SqlServerCeValueConverter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Sqlite/BaseSqliteAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Sqlite/BaseSqliteAdapter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Sqlite/SqliteAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Sqlite/SqliteAdapter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Sqlite/SqliteValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Sqlite/SqliteValueConverter.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Types/BooleanIntType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Types/BooleanIntType.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Types/DateTimeTicksType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Types/DateTimeTicksType.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Types/DefaultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Types/DefaultType.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Types/GuidStringType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Types/GuidStringType.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Types/IType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Types/IType.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Types/TimespanTicksType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Types/TimespanTicksType.cs -------------------------------------------------------------------------------- /src/Catnap/Database/Types/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/Types/TypeHelper.cs -------------------------------------------------------------------------------- /src/Catnap/Database/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Database/ValueConverter.cs -------------------------------------------------------------------------------- /src/Catnap/DbAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/DbAdapter.cs -------------------------------------------------------------------------------- /src/Catnap/DbCommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/DbCommandFactory.cs -------------------------------------------------------------------------------- /src/Catnap/DbCommandSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/DbCommandSpec.cs -------------------------------------------------------------------------------- /src/Catnap/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Entity.cs -------------------------------------------------------------------------------- /src/Catnap/EntityEqualityComaparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/EntityEqualityComaparer.cs -------------------------------------------------------------------------------- /src/Catnap/EntitySessionKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/EntitySessionKey.cs -------------------------------------------------------------------------------- /src/Catnap/Exceptions/ExpectedColumnMissingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Exceptions/ExpectedColumnMissingException.cs -------------------------------------------------------------------------------- /src/Catnap/Exceptions/LazyLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Exceptions/LazyLoadException.cs -------------------------------------------------------------------------------- /src/Catnap/Exceptions/SessionDisposedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Exceptions/SessionDisposedException.cs -------------------------------------------------------------------------------- /src/Catnap/Extensions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Extensions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/Catnap/Extensions/IntExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Extensions/IntExtensions.cs -------------------------------------------------------------------------------- /src/Catnap/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /src/Catnap/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Catnap/Fluently.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Fluently.cs -------------------------------------------------------------------------------- /src/Catnap/IDbCommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/IDbCommandFactory.cs -------------------------------------------------------------------------------- /src/Catnap/IDbCommandSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/IDbCommandSpec.cs -------------------------------------------------------------------------------- /src/Catnap/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/IEntity.cs -------------------------------------------------------------------------------- /src/Catnap/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/IRepository.cs -------------------------------------------------------------------------------- /src/Catnap/ISession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/ISession.cs -------------------------------------------------------------------------------- /src/Catnap/ISessionCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/ISessionCache.cs -------------------------------------------------------------------------------- /src/Catnap/ISessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/ISessionFactory.cs -------------------------------------------------------------------------------- /src/Catnap/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/Catnap/LazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/LazyList.cs -------------------------------------------------------------------------------- /src/Catnap/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Logging/ILogger.cs -------------------------------------------------------------------------------- /src/Catnap/Logging/Impl/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Logging/Impl/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/Catnap/Logging/Impl/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Logging/Impl/FileLogger.cs -------------------------------------------------------------------------------- /src/Catnap/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Logging/Log.cs -------------------------------------------------------------------------------- /src/Catnap/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Logging/LogLevel.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Access.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Access.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Conventions/BelongsToColumnNameConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Conventions/BelongsToColumnNameConvention.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Conventions/IIdMappingConventionable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Conventions/IIdMappingConventionable.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Conventions/Impl/IdMappingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Conventions/Impl/IdMappingConvention.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Conventions/ListParentIdColumnNameConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Conventions/ListParentIdColumnNameConvention.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Generator.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IAccessStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IAccessStrategy.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IAccessStrategyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IAccessStrategyFactory.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IBelongsToPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IBelongsToPropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IBelongsToPropertyMapDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IBelongsToPropertyMapDescriptor.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IDomainMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IDomainMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IDomainMappable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IDomainMappable.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IEntityMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IEntityMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IEntityMapDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IEntityMapDescriptor.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IEntityMappable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IEntityMappable.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IIdPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IIdPropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IIdPropertyMappable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IIdPropertyMappable.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IIdValueGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IIdValueGenerator.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IListPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IListPropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IListPropertyMapDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IListPropertyMapDescriptor.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IListPropertyMappable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IListPropertyMappable.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IPropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IPropertyMapDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IPropertyMapDescriptor.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IPropertyMapWithColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IPropertyMapWithColumn.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IPropertyMapWithColumnMappable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IPropertyMapWithColumnMappable.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/IPropertyMappable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/IPropertyMappable.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/AccessStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/AccessStrategy.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/BasePropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/BasePropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/BelongsToPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/BelongsToPropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/DomainMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/DomainMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/EntityMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/EntityMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/FieldAccessStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/FieldAccessStrategy.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/GuidCombGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/GuidCombGenerator.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/GuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/GuidGenerator.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/IdPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/IdPropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/ListPropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/ListPropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/PropertyAccessStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/PropertyAccessStrategy.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/PropertyWithColumnMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/PropertyWithColumnMap.cs -------------------------------------------------------------------------------- /src/Catnap/Mapping/Impl/ValuePropertyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Mapping/Impl/ValuePropertyMap.cs -------------------------------------------------------------------------------- /src/Catnap/Maps/Impl/EntityMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Maps/Impl/EntityMap.cs -------------------------------------------------------------------------------- /src/Catnap/Migration/BaseMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Migration/BaseMigration.cs -------------------------------------------------------------------------------- /src/Catnap/Migration/DatabaseMigratorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Migration/DatabaseMigratorUtility.cs -------------------------------------------------------------------------------- /src/Catnap/Migration/IDatabaseMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Migration/IDatabaseMigration.cs -------------------------------------------------------------------------------- /src/Catnap/NullSessionCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/NullSessionCache.cs -------------------------------------------------------------------------------- /src/Catnap/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Repository.cs -------------------------------------------------------------------------------- /src/Catnap/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/Session.cs -------------------------------------------------------------------------------- /src/Catnap/SessionCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/SessionCache.cs -------------------------------------------------------------------------------- /src/Catnap/SessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/SessionFactory.cs -------------------------------------------------------------------------------- /src/Catnap/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/Catnap/UnitOfWork.cs -------------------------------------------------------------------------------- /src/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/Machine.Specifications.0.4.13.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/Machine.Specifications.0.4.13.0.nupkg -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/lib/Machine.Specifications.TDNetRunner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/lib/Machine.Specifications.TDNetRunner.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/lib/Machine.Specifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/lib/Machine.Specifications.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/lib/Machine.Specifications.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/lib/Machine.Specifications.dll.tdnet -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/CommandLine.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/CommandLine.xml -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.4.1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.4.1.bat -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.4.5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.4.5.bat -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.5.0 - VS2008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.5.0 - VS2008.bat -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.5.0 - VS2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.5.0 - VS2010.bat -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.5.1 - VS2008.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.5.1 - VS2008.bat -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.5.1 - VS2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/InstallResharperRunner.5.1 - VS2010.bat -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/InstallTDNetRunner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/InstallTDNetRunner.bat -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/InstallTDNetRunnerSilent.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/InstallTDNetRunnerSilent.bat -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/License.txt -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.GallioAdapter.3.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.GallioAdapter.3.1.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.GallioAdapter.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.GallioAdapter.plugin -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.ReSharperRunner.4.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.ReSharperRunner.4.1.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.ReSharperRunner.4.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.ReSharperRunner.4.5.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.ReSharperRunner.5.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.ReSharperRunner.5.0.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.ReSharperRunner.5.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.ReSharperRunner.5.1.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.Reporting.Templates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.Reporting.Templates.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.Reporting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.Reporting.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.SeleniumSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.SeleniumSupport.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.TDNetRunner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.TDNetRunner.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.WatinSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.WatinSupport.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Machine.Specifications.dll.tdnet -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/Spark.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/Spark.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/TestDriven.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/TestDriven.Framework.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/ThoughtWorks.Selenium.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/ThoughtWorks.Selenium.Core.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/WatiN.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/WatiN.Core.dll -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/install.ps1 -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/mspec-clr4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/mspec-clr4.exe -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/mspec-x86-clr4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/mspec-x86-clr4.exe -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/mspec-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/mspec-x86.exe -------------------------------------------------------------------------------- /src/packages/Machine.Specifications.0.4.13.0/tools/mspec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Machine.Specifications.0.4.13.0/tools/mspec.exe -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/License.txt -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/Moq.4.0.10827.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/Moq.4.0.10827.nupkg -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/Moq.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/Moq.chm -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/NET35/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/NET35/Moq.dll -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/NET35/Moq.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/NET35/Moq.pdb -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/NET35/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/NET35/Moq.xml -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/NET40/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/NET40/Moq.dll -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/NET40/Moq.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/NET40/Moq.pdb -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/NET40/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/NET40/Moq.xml -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb -------------------------------------------------------------------------------- /src/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml -------------------------------------------------------------------------------- /src/packages/MySql.Data.6.4.4/lib/net20-cf/mysql.data.cf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/MySql.Data.6.4.4/lib/net20-cf/mysql.data.cf.dll -------------------------------------------------------------------------------- /src/packages/MySql.Data.6.4.4/lib/net20/mysql.data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/MySql.Data.6.4.4/lib/net20/mysql.data.dll -------------------------------------------------------------------------------- /src/packages/MySql.Data.6.4.4/lib/net40/mysql.data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/MySql.Data.6.4.4/lib/net40/mysql.data.dll -------------------------------------------------------------------------------- /src/packages/ShouldFluent.1.1.12.0/ShouldFluent.1.1.12.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/ShouldFluent.1.1.12.0/ShouldFluent.1.1.12.0.nupkg -------------------------------------------------------------------------------- /src/packages/ShouldFluent.1.1.12.0/lib/Should.Fluent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/ShouldFluent.1.1.12.0/lib/Should.Fluent.dll -------------------------------------------------------------------------------- /src/packages/System.Data.SQLite.x86.1.0.80.0/lib/net20/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/System.Data.SQLite.x86.1.0.80.0/lib/net20/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /src/packages/System.Data.SQLite.x86.1.0.80.0/lib/net20/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/System.Data.SQLite.x86.1.0.80.0/lib/net20/System.Data.SQLite.dll -------------------------------------------------------------------------------- /src/packages/System.Data.SQLite.x86.1.0.80.0/lib/net40/System.Data.SQLite.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/System.Data.SQLite.x86.1.0.80.0/lib/net40/System.Data.SQLite.Linq.dll -------------------------------------------------------------------------------- /src/packages/System.Data.SQLite.x86.1.0.80.0/lib/net40/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/System.Data.SQLite.x86.1.0.80.0/lib/net40/System.Data.SQLite.dll -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/src/packages/repositories.config -------------------------------------------------------------------------------- /tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timscott/catnap/HEAD/tools/NuGet.exe --------------------------------------------------------------------------------