├── .gitignore ├── Examples ├── RethinkDb.Examples.ConsoleApp │ ├── App.config │ ├── AssemblyInfo.cs │ ├── Person.cs │ ├── Program.cs │ └── RethinkDb.Examples.ConsoleApp.csproj └── RethinkDb.Examples.TinyExample │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── RethinkDb.Examples.TinyExample.csproj ├── LICENSE.txt ├── README.md ├── RELEASE-NOTES.md ├── circle.yml ├── make-release.sh ├── packages ├── FluentAssertions.2.1.0.0 │ ├── FluentAssertions.2.1.0.0.nupkg │ ├── FluentAssertions.2.1.0.0.nuspec │ └── lib │ │ ├── net35 │ │ ├── FluentAssertions.dll │ │ ├── FluentAssertions.pdb │ │ └── FluentAssertions.xml │ │ ├── net40 │ │ ├── FluentAssertions.dll │ │ ├── FluentAssertions.pdb │ │ └── FluentAssertions.xml │ │ ├── net45 │ │ ├── FluentAssertions.dll │ │ ├── FluentAssertions.pdb │ │ └── FluentAssertions.xml │ │ ├── sl4-windowsphone71 │ │ ├── FluentAssertions.WindowsPhone.dll │ │ ├── FluentAssertions.WindowsPhone.pdb │ │ └── FluentAssertions.WindowsPhone.xml │ │ ├── sl4 │ │ ├── FluentAssertions.Silverlight.dll │ │ ├── FluentAssertions.Silverlight.pdb │ │ ├── FluentAssertions.Silverlight.xml │ │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ │ └── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ │ └── winrt45 │ │ ├── FluentAssertions.dll │ │ ├── FluentAssertions.pdb │ │ └── FluentAssertions.xml ├── NSubstitute.1.6.0.0 │ ├── BreakingChanges.txt │ ├── CHANGELOG.txt │ ├── LICENSE.txt │ ├── NSubstitute.1.6.0.0.nupkg │ ├── README.txt │ ├── acknowledgements.txt │ └── lib │ │ ├── NET35 │ │ ├── NSubstitute.XML │ │ └── NSubstitute.dll │ │ └── NET40 │ │ ├── NSubstitute.XML │ │ └── NSubstitute.dll ├── NUnit.2.6.2 │ ├── NUnit.2.6.2.nupkg │ ├── NUnit.2.6.2.nuspec │ ├── lib │ │ ├── nunit.framework.dll │ │ └── nunit.framework.xml │ └── license.txt ├── NUnit.Runners.2.6.1 │ ├── NUnit.Runners.2.6.1.nupkg │ ├── license.txt │ └── tools │ │ ├── agent.conf │ │ ├── agent.log.conf │ │ ├── launcher.log.conf │ │ ├── lib │ │ ├── Images │ │ │ └── Tree │ │ │ │ ├── Circles │ │ │ │ ├── Failure.jpg │ │ │ │ ├── Ignored.jpg │ │ │ │ ├── Inconclusive.jpg │ │ │ │ ├── Skipped.jpg │ │ │ │ └── Success.jpg │ │ │ │ ├── Classic │ │ │ │ ├── Failure.jpg │ │ │ │ ├── Ignored.jpg │ │ │ │ ├── Inconclusive.jpg │ │ │ │ ├── Skipped.jpg │ │ │ │ └── Success.jpg │ │ │ │ ├── Default │ │ │ │ ├── Failure.png │ │ │ │ ├── Ignored.png │ │ │ │ ├── Inconclusive.png │ │ │ │ ├── Skipped.png │ │ │ │ └── Success.png │ │ │ │ └── Visual Studio │ │ │ │ ├── Failure.png │ │ │ │ ├── Ignored.png │ │ │ │ ├── Inconclusive.png │ │ │ │ ├── SeriousWarning.png │ │ │ │ ├── Skipped.png │ │ │ │ └── Success.png │ │ ├── log4net.dll │ │ ├── nunit-console-runner.dll │ │ ├── nunit-gui-runner.dll │ │ ├── nunit.core.dll │ │ ├── nunit.core.interfaces.dll │ │ ├── nunit.uiexception.dll │ │ ├── nunit.uikit.dll │ │ └── nunit.util.dll │ │ ├── nunit-agent-x86.exe │ │ ├── nunit-agent-x86.exe.config │ │ ├── nunit-agent.exe │ │ ├── nunit-agent.exe.config │ │ ├── nunit-console-x86.exe │ │ ├── nunit-console-x86.exe.config │ │ ├── nunit-console.exe │ │ ├── nunit-console.exe.config │ │ ├── nunit-editor.exe │ │ ├── nunit-x86.exe │ │ ├── nunit-x86.exe.config │ │ ├── nunit.exe │ │ ├── nunit.exe.config │ │ ├── nunit.framework.dll │ │ ├── pnunit-agent.exe │ │ ├── pnunit-agent.exe.config │ │ ├── pnunit-launcher.exe │ │ ├── pnunit-launcher.exe.config │ │ ├── pnunit.framework.dll │ │ ├── pnunit.tests.dll │ │ ├── runpnunit.bat │ │ └── test.conf ├── Newtonsoft.Json.5.0.8 │ ├── Newtonsoft.Json.5.0.8.nupkg │ ├── Newtonsoft.Json.5.0.8.nuspec │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netcore45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl4+wp7+win8 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 ├── protobuf-net.2.0.0.666 │ ├── lib │ │ ├── net20-cf │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── net20 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── net30 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── net35-cf │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── net35 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── net40-cf │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── net40 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── netcore45 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.pri │ │ ├── portable-sl4+net40+wp7+windows8 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── sl3-wp │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── sl4-windowsphone71 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ ├── sl4 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ │ └── windowsphone8 │ │ │ ├── protobuf-net.dll │ │ │ ├── protobuf-net.pdb │ │ │ └── protobuf-net.xml │ └── protobuf-net.2.0.0.666.nupkg └── repositories.config ├── rethinkdb-net-newtonsoft-test ├── App.config ├── DatumConversion │ ├── ComplexObjectTests.cs │ ├── DateTimeOffsetTests.cs │ ├── DateTimeTests.cs │ ├── FatDateTimeTests.cs │ ├── GeneralTests.cs │ ├── TimeSpanTests.cs │ └── Util.cs ├── DebugExtensionsForDatum.cs ├── DebugTests.cs ├── Integration │ ├── ComplexObjectTests.cs │ └── CoreIntegrationTests.cs ├── Native.cs ├── Properties │ └── AssemblyInfo.cs ├── TestObjects │ ├── ADateTime.cs │ ├── ADateTimeOffset.cs │ ├── ComplexObject.cs │ ├── DateTimeNullable.cs │ ├── DateTimeOffsetNullable.cs │ ├── FatDateTimeObject.cs │ ├── TestObjectNewton.cs │ └── TimeSpanObject.cs ├── packages.config └── rethinkdb-net-newtonsoft-test.csproj ├── rethinkdb-net-newtonsoft.nuspec ├── rethinkdb-net-newtonsoft ├── Configuration │ ├── ConfigurationAssembler.cs │ ├── NewtonSerializer.cs │ ├── NewtonsoftConnectionFactory.cs │ ├── NewtonsoftDatumConverterFactory.cs │ └── NewtonsoftReferenceDatumConverter.cs ├── Converters │ └── TimeSpanConverter.cs ├── DatumConvert.cs ├── DatumReader.cs ├── DatumReaderToken.cs ├── DatumWriter.cs ├── DatumWriterToken.cs ├── Demand.cs ├── Properties │ └── AssemblyInfo.cs ├── packages.config └── rethinkdb-net-newtonsoft.csproj ├── rethinkdb-net-test ├── App.config ├── ConnectionFactories │ ├── ConnectionPoolingConnectionFactoryTests.cs │ └── ReliableConnectionFactoryTests.cs ├── DatumConverters │ ├── AbstractDatumConverterFactoryTests.cs │ ├── AbstractReferenceTypeDatumConverterTests.cs │ ├── AbstractValueTypeDatumConverterTests.cs │ ├── AggregateDatumConverterTests.cs │ ├── AnonymousTypeDatumConverterTests.cs │ ├── ArrayDatumConverterTests.cs │ ├── BinaryDatumConverterTests.cs │ ├── BoolDatumConverterTests.cs │ ├── ByteDatumConverterTests.cs │ ├── CharDatumConverterTests.cs │ ├── DataContractDatumConverterTests.cs │ ├── DateTimeDatumConverterTests.cs │ ├── DateTimeOffsetDatumConverterTests.cs │ ├── DecimalDatumConverterTests.cs │ ├── DefaultDatumConverterTests.cs │ ├── DoubleDatumConverterTests.cs │ ├── EnumDatumConverterFactoryTests.cs │ ├── FloatDatumConverterTests.cs │ ├── GuidDatumConverterTests.cs │ ├── IntDatumConverterTests.cs │ ├── ListDatumConverterFactoryTests.cs │ ├── LongDatumConverterTests.cs │ ├── NamedValueDictionaryConverterTests.cs │ ├── NullableDatumConverterTests.cs │ ├── ShortDatumConverterTests.cs │ ├── SignedByteDatumConverterTests.cs │ ├── StringDatumConverterTests.cs │ ├── TimeSpanDatumConverterTests.cs │ ├── TupleDatumConverterTests.cs │ ├── UnsignedIntDatumConverterTests.cs │ ├── UnsignedLongDatumConverterTests.cs │ ├── UnsignedShortDatumConverterTests.cs │ └── UriDatumConverterTests.cs ├── DatumHelpers.cs ├── Expressions │ ├── DateTimeExpressionTests.cs │ ├── DefaultExpressionConverterFactoryTests.cs │ ├── GenericTypeConstraintExpressionTests.cs │ ├── GuidExpressionTests.cs │ └── TimeSpanExpressionTests.cs ├── Integration │ ├── AnotherTestObject.cs │ ├── BlankTests.cs │ ├── ConnectTests.cs │ ├── DatabaseTests.cs │ ├── Documentation │ │ ├── Author.cs │ │ ├── Post.cs │ │ └── TenMinuteGuide.cs │ ├── GroupingTests.cs │ ├── HasFieldsTests.cs │ ├── IntegrationTestSetup.cs │ ├── ManyObjectTests.cs │ ├── MultiObjectTests.cs │ ├── MultiTableTests.cs │ ├── NamedValueDictionaryTests.cs │ ├── RealtimePushTests.cs │ ├── SingleObjectTests.cs │ ├── TableTests.cs │ ├── TestBase.cs │ ├── TestObject.cs │ ├── TestObject2.cs │ ├── TestObject3.cs │ ├── TestObject4.cs │ ├── TestObjectWithDictionary.cs │ └── ZipTestObject.cs ├── Properties │ └── AssemblyInfo.cs ├── QueryTests │ ├── ReplaceQueryTests.cs │ └── UpdateQueryTests.cs ├── packages.config └── rethinkdb-net-test.csproj ├── rethinkdb-net.VS2013.sln ├── rethinkdb-net.VS2013.sln.DotSettings ├── rethinkdb-net.nuspec ├── rethinkdb-net.sln └── rethinkdb-net ├── Bound.cs ├── CompoundIndex.cs ├── CompoundIndexKeys.cs ├── Configuration ├── ClusterElement.cs ├── ClusterElementCollection.cs ├── ConfigurationAssembler.cs ├── ConnectionPoolElement.cs ├── DefaultLoggerElement.cs ├── EndPointElement.cs ├── EndPointElementCollection.cs ├── NetworkErrorHandlingElement.cs └── RethinkDbClientSection.cs ├── Conflict.cs ├── Connection.cs ├── ConnectionExtensions.cs ├── ConnectionFactories ├── ConnectionPoolingConnectionFactory.cs ├── DefaultConnectionFactory.cs └── ReliableConnectionFactory.cs ├── DatumConverters ├── AbstractDatumConverterFactory.cs ├── AbstractReferenceTypeDatumConverter.cs ├── AbstractValueTypeDatumConverter.cs ├── AggregateDatumConverterFactory.cs ├── AnonymousTypeDatumConverterFactory.cs ├── ArrayDatumConverterFactory.cs ├── BinaryDatumConverterFactory.cs ├── BoundEnumDatumConverterFactory.cs ├── CompoundIndexDatumConverterFactory.cs ├── DataContractDatumConverterFactory.cs ├── DateTimeDatumConverterFactory.cs ├── DateTimeOffsetDatumConverterFactory.cs ├── DatumConverterFactoryExtensions.cs ├── EnumDatumConverterFactory.cs ├── GroupingDictionaryDatumConverterFactory.cs ├── GuidDatumConverterFactory.cs ├── ListDatumConverterFactory.cs ├── NamedValueDictionaryDatumConverterFactory.cs.cs ├── NullableDatumConverterFactory.cs ├── ObjectDatumConverterFactory.cs ├── PrimitiveDatumConverterFactory.cs ├── TimeSpanDatumConverterFactory.cs ├── TupleDatumConverterFactory.cs └── UriDatumConverterFactory.cs ├── DmlResponse.cs ├── Exceptions ├── RethinkDbException.cs ├── RethinkDbInternalErrorException.cs ├── RethinkDbNetworkException.cs └── RethinkDbRuntimeException.cs ├── Expressions ├── BaseExpression.cs ├── DateTimeExpressionConverters.cs ├── DefaultExpressionConverterFactory.cs ├── DictionaryExpressionConverters.cs ├── GuidExpressionConverters.cs ├── LinqExpressionConverters.cs ├── NullableExpressionConverters.cs ├── SingleParameterLambda.cs ├── StringExpressionConverters.cs ├── TwoParameterLambda.cs └── ZeroParameterLambda.cs ├── Index.cs ├── IndexStatus.cs ├── Interfaces ├── IAsyncEnumerator.cs ├── IBaseIndex.cs ├── IChangefeedCompatibleQuery.cs ├── ICompoundIndex.cs ├── IConnectableConnection.cs ├── IConnection.cs ├── IConnectionFactory.cs ├── IDatabaseQuery.cs ├── IDatumConverter.cs ├── IDatumConverterFactory.cs ├── IExpressionConverterFactory.cs ├── IExpressionConverterOneParameter.cs ├── IExpressionConverterTwoParameter.cs ├── IExpressionConverterZeroParameter.cs ├── IGroupingDictionary.cs ├── IGroupingQuery.cs ├── IIndex.cs ├── ILogger.cs ├── IMultiIndex.cs ├── IMutableSingleObjectQuery.cs ├── IObjectDatumConverter.cs ├── IOrderByIndexQuery.cs ├── IOrderedSequenceQuery.cs ├── IQuery.cs ├── IQueryConverter.cs ├── IScalarQuery.cs ├── ISequenceQuery.cs ├── ISingleObjectQuery.cs ├── IStreamingSequenceQuery.cs ├── ITableQuery.cs ├── IWriteQuery.cs └── OrderByTerm.cs ├── Json ├── JsonException.cs ├── JsonParser.cs ├── JsonParserToken.cs ├── JsonReader.cs └── JsonWriter.cs ├── Logging ├── DefaultLogger.cs ├── LoggingCategory.cs └── LoggingUtils.cs ├── MatchGroupResponse.cs ├── MatchResponse.cs ├── MultiIndex.cs ├── OrderByDirection.cs ├── Properties └── AssemblyInfo.cs ├── Protocols ├── Extensions.cs ├── IProtocol.cs ├── Version_0_2_Protocol.cs ├── Version_0_3.cs ├── Version_0_3_JsonProtocol.cs ├── Version_0_3_ProtobufProtocol.cs ├── Version_0_4_JsonProtocol.cs └── Version_0_4_ProtobufProtocol.cs ├── Query.cs ├── QueryConverter.cs ├── QueryTerm ├── AvgAggregateQuery.cs ├── AvgGroupAggregateQuery.cs ├── BetweenQuery.cs ├── ChangesQuery.cs ├── CompoundIndexCreateQuery.cs ├── ConcatMapQuery.cs ├── ContainsAggregateQuery.cs ├── ContainsGroupAggregateQuery.cs ├── CountAggregateQuery.cs ├── CountGroupAggregateQuery.cs ├── DbCreateQuery.cs ├── DbDropQuery.cs ├── DbListQuery.cs ├── DbQuery.cs ├── DeleteAndReturnValueQuery.cs ├── DeleteQuery.cs ├── DeleteQueryBase.cs ├── DistinctQuery.cs ├── EqJoinQuery.cs ├── ExprQuery.cs ├── ExprSequenceQuery.cs ├── ExpressionUtils.cs ├── FilterQuery.cs ├── GetAllQuery.cs ├── GetQuery.cs ├── GroupByFunctionQuery.cs ├── GroupByIndexQuery.cs ├── HasFieldsQuery.cs ├── IndexCreateQuery.cs ├── IndexDropQuery.cs ├── IndexListQuery.cs ├── IndexStatusQuery.cs ├── IndexWaitQuery.cs ├── InnerJoinQuery.cs ├── InsertQuery.cs ├── IsEmptyQuery.cs ├── LImitQuery.cs ├── LimitQueryChangefeedCompatible.cs ├── MapGroupQuery.cs ├── MapQuery.cs ├── MaxAggregateIndexQuery.cs ├── MaxAggregateQuery.cs ├── MaxGroupAggregateQuery.cs ├── MinAggregateIndexQuery.cs ├── MinAggregateQuery.cs ├── MinGroupAggregateQuery.cs ├── NowQuery.cs ├── NthQuery.cs ├── OrderByIndexQuery.cs ├── OrderByQuery.cs ├── OuterJoinQuery.cs ├── ReduceGroupQuery.cs ├── ReduceQuery.cs ├── ReplaceAndReturnValueQuery.cs ├── ReplaceQuery.cs ├── ReplaceQueryBase.cs ├── SampleQuery.cs ├── SkipQuery.cs ├── SliceQuery.cs ├── SumAggregateQuery.cs ├── SumGroupAggregateQuery.cs ├── TableCreateQuery.cs ├── TableDropQuery.cs ├── TableListQuery.cs ├── TableQuery.cs ├── UngroupQuery.cs ├── UnionQuery.cs ├── UpdateAndReturnValueQuery.cs ├── UpdateQuery.cs ├── UpdateQueryBase.cs └── ZipQuery.cs ├── ReQLExpression.cs ├── SynchronousApiExtensions.cs ├── TaskUtilities.cs ├── UngroupObject.cs ├── packages.config ├── regenerate_rethinkdb_spec.sh ├── rethinkdb-net.csproj ├── rethinkdb_spec.cs └── rethinkdb_spec.proto /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.ConsoleApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.ConsoleApp/App.config -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.ConsoleApp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.ConsoleApp/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.ConsoleApp/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.ConsoleApp/Person.cs -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.ConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.ConsoleApp/Program.cs -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.ConsoleApp/RethinkDb.Examples.ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.ConsoleApp/RethinkDb.Examples.ConsoleApp.csproj -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.TinyExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.TinyExample/App.config -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.TinyExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.TinyExample/Program.cs -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.TinyExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.TinyExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/RethinkDb.Examples.TinyExample/RethinkDb.Examples.TinyExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/Examples/RethinkDb.Examples.TinyExample/RethinkDb.Examples.TinyExample.csproj -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/circle.yml -------------------------------------------------------------------------------- /make-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/make-release.sh -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/FluentAssertions.2.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/FluentAssertions.2.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/FluentAssertions.2.1.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/FluentAssertions.2.1.0.0.nuspec -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net35/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net35/FluentAssertions.dll -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net35/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net35/FluentAssertions.pdb -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net35/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net35/FluentAssertions.xml -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net40/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net40/FluentAssertions.dll -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net40/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net40/FluentAssertions.pdb -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net40/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net40/FluentAssertions.xml -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net45/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net45/FluentAssertions.dll -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net45/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net45/FluentAssertions.pdb -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/net45/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/net45/FluentAssertions.xml -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/sl4-windowsphone71/FluentAssertions.WindowsPhone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/sl4-windowsphone71/FluentAssertions.WindowsPhone.dll -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/sl4-windowsphone71/FluentAssertions.WindowsPhone.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/sl4-windowsphone71/FluentAssertions.WindowsPhone.pdb -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/sl4-windowsphone71/FluentAssertions.WindowsPhone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/sl4-windowsphone71/FluentAssertions.WindowsPhone.xml -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/sl4/FluentAssertions.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/sl4/FluentAssertions.Silverlight.dll -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/sl4/FluentAssertions.Silverlight.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/sl4/FluentAssertions.Silverlight.pdb -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/sl4/FluentAssertions.Silverlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/sl4/FluentAssertions.Silverlight.xml -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/sl4/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/sl4/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/sl4/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/sl4/Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/winrt45/FluentAssertions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/winrt45/FluentAssertions.dll -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/winrt45/FluentAssertions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/winrt45/FluentAssertions.pdb -------------------------------------------------------------------------------- /packages/FluentAssertions.2.1.0.0/lib/winrt45/FluentAssertions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/FluentAssertions.2.1.0.0/lib/winrt45/FluentAssertions.xml -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/BreakingChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/BreakingChanges.txt -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/CHANGELOG.txt -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/LICENSE.txt -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/NSubstitute.1.6.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/NSubstitute.1.6.0.0.nupkg -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/README.txt -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/acknowledgements.txt -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/lib/NET35/NSubstitute.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/lib/NET35/NSubstitute.XML -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/lib/NET35/NSubstitute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/lib/NET35/NSubstitute.dll -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/lib/NET40/NSubstitute.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/lib/NET40/NSubstitute.XML -------------------------------------------------------------------------------- /packages/NSubstitute.1.6.0.0/lib/NET40/NSubstitute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NSubstitute.1.6.0.0/lib/NET40/NSubstitute.dll -------------------------------------------------------------------------------- /packages/NUnit.2.6.2/NUnit.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.2.6.2/NUnit.2.6.2.nupkg -------------------------------------------------------------------------------- /packages/NUnit.2.6.2/NUnit.2.6.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.2.6.2/NUnit.2.6.2.nuspec -------------------------------------------------------------------------------- /packages/NUnit.2.6.2/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.2.6.2/lib/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.2.6.2/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.2.6.2/lib/nunit.framework.xml -------------------------------------------------------------------------------- /packages/NUnit.2.6.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.2.6.2/license.txt -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/NUnit.Runners.2.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/NUnit.Runners.2.6.1.nupkg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/license.txt -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/agent.conf -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/agent.log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/agent.log.conf -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/launcher.log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/launcher.log.conf -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Failure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Failure.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Ignored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Ignored.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Inconclusive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Inconclusive.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Skipped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Skipped.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Circles/Success.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Failure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Failure.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Ignored.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Ignored.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Inconclusive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Inconclusive.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Skipped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Skipped.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Classic/Success.jpg -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Failure.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Ignored.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Inconclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Inconclusive.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Skipped.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Default/Success.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Failure.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Ignored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Ignored.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Inconclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Inconclusive.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Skipped.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/Images/Tree/Visual Studio/Success.png -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/log4net.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/nunit-console-runner.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/nunit-gui-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/nunit-gui-runner.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/nunit.core.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/nunit.uiexception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/nunit.uiexception.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/nunit.uikit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/nunit.uikit.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/lib/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/lib/nunit.util.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-agent-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-agent-x86.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-agent-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-agent-x86.exe.config -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-agent.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-agent.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-agent.exe.config -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-console-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-console-x86.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-console-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-console-x86.exe.config -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-console.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-console.exe.config -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-editor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-editor.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-x86.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit-x86.exe.config -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit.exe.config -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/pnunit-agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/pnunit-agent.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/pnunit-agent.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/pnunit-agent.exe.config -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/pnunit-launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/pnunit-launcher.exe -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/pnunit-launcher.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/pnunit-launcher.exe.config -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/pnunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/pnunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/pnunit.tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/pnunit.tests.dll -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/runpnunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/runpnunit.bat -------------------------------------------------------------------------------- /packages/NUnit.Runners.2.6.1/tools/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/NUnit.Runners.2.6.1/tools/test.conf -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nuspec -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.8/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/Newtonsoft.Json.5.0.8/tools/install.ps1 -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net20-cf/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net20-cf/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net20-cf/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net20-cf/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net20-cf/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net20-cf/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net20/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net20/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net20/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net20/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net20/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net20/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net30/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net30/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net30/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net30/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net30/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net30/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net35-cf/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net35-cf/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net35-cf/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net35-cf/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net35-cf/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net35-cf/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net35/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net35/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net35/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net35/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net35/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net35/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net40-cf/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net40-cf/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net40-cf/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net40-cf/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net40-cf/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net40-cf/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net40/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net40/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net40/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net40/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/net40/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/net40/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/netcore45/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/netcore45/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/netcore45/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/netcore45/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/netcore45/protobuf-net.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/netcore45/protobuf-net.pri -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/portable-sl4+net40+wp7+windows8/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/portable-sl4+net40+wp7+windows8/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/portable-sl4+net40+wp7+windows8/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/portable-sl4+net40+wp7+windows8/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/portable-sl4+net40+wp7+windows8/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/portable-sl4+net40+wp7+windows8/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl3-wp/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl3-wp/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl3-wp/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl3-wp/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl3-wp/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl3-wp/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl4-windowsphone71/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl4-windowsphone71/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl4-windowsphone71/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl4-windowsphone71/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl4-windowsphone71/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl4-windowsphone71/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl4/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl4/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl4/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl4/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/sl4/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/sl4/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/windowsphone8/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/windowsphone8/protobuf-net.dll -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/windowsphone8/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/windowsphone8/protobuf-net.pdb -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/lib/windowsphone8/protobuf-net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/lib/windowsphone8/protobuf-net.xml -------------------------------------------------------------------------------- /packages/protobuf-net.2.0.0.666/protobuf-net.2.0.0.666.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/protobuf-net.2.0.0.666/protobuf-net.2.0.0.666.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/packages/repositories.config -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/App.config -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DatumConversion/ComplexObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DatumConversion/ComplexObjectTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DatumConversion/DateTimeOffsetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DatumConversion/DateTimeOffsetTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DatumConversion/DateTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DatumConversion/DateTimeTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DatumConversion/FatDateTimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DatumConversion/FatDateTimeTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DatumConversion/GeneralTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DatumConversion/GeneralTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DatumConversion/TimeSpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DatumConversion/TimeSpanTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DatumConversion/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DatumConversion/Util.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DebugExtensionsForDatum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DebugExtensionsForDatum.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/DebugTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/DebugTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/Integration/ComplexObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/Integration/ComplexObjectTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/Integration/CoreIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/Integration/CoreIntegrationTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/Native.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/TestObjects/ADateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/TestObjects/ADateTime.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/TestObjects/ADateTimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/TestObjects/ADateTimeOffset.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/TestObjects/ComplexObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/TestObjects/ComplexObject.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/TestObjects/DateTimeNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/TestObjects/DateTimeNullable.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/TestObjects/DateTimeOffsetNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/TestObjects/DateTimeOffsetNullable.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/TestObjects/FatDateTimeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/TestObjects/FatDateTimeObject.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/TestObjects/TestObjectNewton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/TestObjects/TestObjectNewton.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/TestObjects/TimeSpanObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/TestObjects/TimeSpanObject.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/packages.config -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft-test/rethinkdb-net-newtonsoft-test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft-test/rethinkdb-net-newtonsoft-test.csproj -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft.nuspec -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/Configuration/ConfigurationAssembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/Configuration/ConfigurationAssembler.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/Configuration/NewtonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/Configuration/NewtonSerializer.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/Configuration/NewtonsoftConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/Configuration/NewtonsoftConnectionFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/Configuration/NewtonsoftDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/Configuration/NewtonsoftDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/Configuration/NewtonsoftReferenceDatumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/Configuration/NewtonsoftReferenceDatumConverter.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/Converters/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/Converters/TimeSpanConverter.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/DatumConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/DatumConvert.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/DatumReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/DatumReader.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/DatumReaderToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/DatumReaderToken.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/DatumWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/DatumWriter.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/DatumWriterToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/DatumWriterToken.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/Demand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/Demand.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/packages.config -------------------------------------------------------------------------------- /rethinkdb-net-newtonsoft/rethinkdb-net-newtonsoft.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-newtonsoft/rethinkdb-net-newtonsoft.csproj -------------------------------------------------------------------------------- /rethinkdb-net-test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/App.config -------------------------------------------------------------------------------- /rethinkdb-net-test/ConnectionFactories/ConnectionPoolingConnectionFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/ConnectionFactories/ConnectionPoolingConnectionFactoryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/ConnectionFactories/ReliableConnectionFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/ConnectionFactories/ReliableConnectionFactoryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/AbstractDatumConverterFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/AbstractDatumConverterFactoryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/AbstractReferenceTypeDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/AbstractReferenceTypeDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/AbstractValueTypeDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/AbstractValueTypeDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/AggregateDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/AggregateDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/AnonymousTypeDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/AnonymousTypeDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/ArrayDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/ArrayDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/BinaryDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/BinaryDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/BoolDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/BoolDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/ByteDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/ByteDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/CharDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/CharDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/DataContractDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/DataContractDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/DateTimeDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/DateTimeDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/DateTimeOffsetDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/DateTimeOffsetDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/DecimalDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/DecimalDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/DefaultDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/DefaultDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/DoubleDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/DoubleDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/EnumDatumConverterFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/EnumDatumConverterFactoryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/FloatDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/FloatDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/GuidDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/GuidDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/IntDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/IntDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/ListDatumConverterFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/ListDatumConverterFactoryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/LongDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/LongDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/NamedValueDictionaryConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/NamedValueDictionaryConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/NullableDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/NullableDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/ShortDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/ShortDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/SignedByteDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/SignedByteDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/StringDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/StringDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/TimeSpanDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/TimeSpanDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/TupleDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/TupleDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/UnsignedIntDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/UnsignedIntDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/UnsignedLongDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/UnsignedLongDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/UnsignedShortDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/UnsignedShortDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumConverters/UriDatumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumConverters/UriDatumConverterTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/DatumHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/DatumHelpers.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Expressions/DateTimeExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Expressions/DateTimeExpressionTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Expressions/DefaultExpressionConverterFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Expressions/DefaultExpressionConverterFactoryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Expressions/GenericTypeConstraintExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Expressions/GenericTypeConstraintExpressionTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Expressions/GuidExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Expressions/GuidExpressionTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Expressions/TimeSpanExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Expressions/TimeSpanExpressionTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/AnotherTestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/AnotherTestObject.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/BlankTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/BlankTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/ConnectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/ConnectTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/DatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/DatabaseTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/Documentation/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/Documentation/Author.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/Documentation/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/Documentation/Post.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/Documentation/TenMinuteGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/Documentation/TenMinuteGuide.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/GroupingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/GroupingTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/HasFieldsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/HasFieldsTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/IntegrationTestSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/IntegrationTestSetup.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/ManyObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/ManyObjectTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/MultiObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/MultiObjectTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/MultiTableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/MultiTableTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/NamedValueDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/NamedValueDictionaryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/RealtimePushTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/RealtimePushTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/SingleObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/SingleObjectTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/TableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/TableTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/TestBase.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/TestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/TestObject.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/TestObject2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/TestObject2.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/TestObject3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/TestObject3.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/TestObject4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/TestObject4.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/TestObjectWithDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/TestObjectWithDictionary.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Integration/ZipTestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Integration/ZipTestObject.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/QueryTests/ReplaceQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/QueryTests/ReplaceQueryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/QueryTests/UpdateQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/QueryTests/UpdateQueryTests.cs -------------------------------------------------------------------------------- /rethinkdb-net-test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/packages.config -------------------------------------------------------------------------------- /rethinkdb-net-test/rethinkdb-net-test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net-test/rethinkdb-net-test.csproj -------------------------------------------------------------------------------- /rethinkdb-net.VS2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net.VS2013.sln -------------------------------------------------------------------------------- /rethinkdb-net.VS2013.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net.VS2013.sln.DotSettings -------------------------------------------------------------------------------- /rethinkdb-net.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net.nuspec -------------------------------------------------------------------------------- /rethinkdb-net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net.sln -------------------------------------------------------------------------------- /rethinkdb-net/Bound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Bound.cs -------------------------------------------------------------------------------- /rethinkdb-net/CompoundIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/CompoundIndex.cs -------------------------------------------------------------------------------- /rethinkdb-net/CompoundIndexKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/CompoundIndexKeys.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/ClusterElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/ClusterElement.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/ClusterElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/ClusterElementCollection.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/ConfigurationAssembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/ConfigurationAssembler.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/ConnectionPoolElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/ConnectionPoolElement.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/DefaultLoggerElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/DefaultLoggerElement.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/EndPointElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/EndPointElement.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/EndPointElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/EndPointElementCollection.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/NetworkErrorHandlingElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/NetworkErrorHandlingElement.cs -------------------------------------------------------------------------------- /rethinkdb-net/Configuration/RethinkDbClientSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Configuration/RethinkDbClientSection.cs -------------------------------------------------------------------------------- /rethinkdb-net/Conflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Conflict.cs -------------------------------------------------------------------------------- /rethinkdb-net/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Connection.cs -------------------------------------------------------------------------------- /rethinkdb-net/ConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/ConnectionExtensions.cs -------------------------------------------------------------------------------- /rethinkdb-net/ConnectionFactories/ConnectionPoolingConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/ConnectionFactories/ConnectionPoolingConnectionFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/ConnectionFactories/DefaultConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/ConnectionFactories/DefaultConnectionFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/ConnectionFactories/ReliableConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/ConnectionFactories/ReliableConnectionFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/AbstractDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/AbstractDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/AbstractReferenceTypeDatumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/AbstractReferenceTypeDatumConverter.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/AbstractValueTypeDatumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/AbstractValueTypeDatumConverter.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/AggregateDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/AggregateDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/AnonymousTypeDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/AnonymousTypeDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/ArrayDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/ArrayDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/BinaryDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/BinaryDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/BoundEnumDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/BoundEnumDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/CompoundIndexDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/CompoundIndexDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/DataContractDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/DataContractDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/DateTimeDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/DateTimeDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/DateTimeOffsetDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/DateTimeOffsetDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/DatumConverterFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/DatumConverterFactoryExtensions.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/EnumDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/EnumDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/GroupingDictionaryDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/GroupingDictionaryDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/GuidDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/GuidDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/ListDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/ListDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/NamedValueDictionaryDatumConverterFactory.cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/NamedValueDictionaryDatumConverterFactory.cs.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/NullableDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/NullableDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/ObjectDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/ObjectDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/PrimitiveDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/PrimitiveDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/TimeSpanDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/TimeSpanDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/TupleDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/TupleDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DatumConverters/UriDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DatumConverters/UriDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/DmlResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/DmlResponse.cs -------------------------------------------------------------------------------- /rethinkdb-net/Exceptions/RethinkDbException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Exceptions/RethinkDbException.cs -------------------------------------------------------------------------------- /rethinkdb-net/Exceptions/RethinkDbInternalErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Exceptions/RethinkDbInternalErrorException.cs -------------------------------------------------------------------------------- /rethinkdb-net/Exceptions/RethinkDbNetworkException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Exceptions/RethinkDbNetworkException.cs -------------------------------------------------------------------------------- /rethinkdb-net/Exceptions/RethinkDbRuntimeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Exceptions/RethinkDbRuntimeException.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/BaseExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/BaseExpression.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/DateTimeExpressionConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/DateTimeExpressionConverters.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/DefaultExpressionConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/DefaultExpressionConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/DictionaryExpressionConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/DictionaryExpressionConverters.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/GuidExpressionConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/GuidExpressionConverters.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/LinqExpressionConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/LinqExpressionConverters.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/NullableExpressionConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/NullableExpressionConverters.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/SingleParameterLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/SingleParameterLambda.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/StringExpressionConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/StringExpressionConverters.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/TwoParameterLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/TwoParameterLambda.cs -------------------------------------------------------------------------------- /rethinkdb-net/Expressions/ZeroParameterLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Expressions/ZeroParameterLambda.cs -------------------------------------------------------------------------------- /rethinkdb-net/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Index.cs -------------------------------------------------------------------------------- /rethinkdb-net/IndexStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/IndexStatus.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IAsyncEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IAsyncEnumerator.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IBaseIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IBaseIndex.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IChangefeedCompatibleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IChangefeedCompatibleQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/ICompoundIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/ICompoundIndex.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IConnectableConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IConnectableConnection.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IConnection.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IConnectionFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IDatabaseQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IDatabaseQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IDatumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IDatumConverter.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IDatumConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IDatumConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IExpressionConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IExpressionConverterFactory.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IExpressionConverterOneParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IExpressionConverterOneParameter.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IExpressionConverterTwoParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IExpressionConverterTwoParameter.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IExpressionConverterZeroParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IExpressionConverterZeroParameter.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IGroupingDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IGroupingDictionary.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IGroupingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IGroupingQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IIndex.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/ILogger.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IMultiIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IMultiIndex.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IMutableSingleObjectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IMutableSingleObjectQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IObjectDatumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IObjectDatumConverter.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IOrderByIndexQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IOrderByIndexQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IOrderedSequenceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IOrderedSequenceQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IQueryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IQueryConverter.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IScalarQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IScalarQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/ISequenceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/ISequenceQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/ISingleObjectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/ISingleObjectQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IStreamingSequenceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IStreamingSequenceQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/ITableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/ITableQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/IWriteQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/IWriteQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/Interfaces/OrderByTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Interfaces/OrderByTerm.cs -------------------------------------------------------------------------------- /rethinkdb-net/Json/JsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Json/JsonException.cs -------------------------------------------------------------------------------- /rethinkdb-net/Json/JsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Json/JsonParser.cs -------------------------------------------------------------------------------- /rethinkdb-net/Json/JsonParserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Json/JsonParserToken.cs -------------------------------------------------------------------------------- /rethinkdb-net/Json/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Json/JsonReader.cs -------------------------------------------------------------------------------- /rethinkdb-net/Json/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Json/JsonWriter.cs -------------------------------------------------------------------------------- /rethinkdb-net/Logging/DefaultLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Logging/DefaultLogger.cs -------------------------------------------------------------------------------- /rethinkdb-net/Logging/LoggingCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Logging/LoggingCategory.cs -------------------------------------------------------------------------------- /rethinkdb-net/Logging/LoggingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Logging/LoggingUtils.cs -------------------------------------------------------------------------------- /rethinkdb-net/MatchGroupResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/MatchGroupResponse.cs -------------------------------------------------------------------------------- /rethinkdb-net/MatchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/MatchResponse.cs -------------------------------------------------------------------------------- /rethinkdb-net/MultiIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/MultiIndex.cs -------------------------------------------------------------------------------- /rethinkdb-net/OrderByDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/OrderByDirection.cs -------------------------------------------------------------------------------- /rethinkdb-net/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /rethinkdb-net/Protocols/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Protocols/Extensions.cs -------------------------------------------------------------------------------- /rethinkdb-net/Protocols/IProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Protocols/IProtocol.cs -------------------------------------------------------------------------------- /rethinkdb-net/Protocols/Version_0_2_Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Protocols/Version_0_2_Protocol.cs -------------------------------------------------------------------------------- /rethinkdb-net/Protocols/Version_0_3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Protocols/Version_0_3.cs -------------------------------------------------------------------------------- /rethinkdb-net/Protocols/Version_0_3_JsonProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Protocols/Version_0_3_JsonProtocol.cs -------------------------------------------------------------------------------- /rethinkdb-net/Protocols/Version_0_3_ProtobufProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Protocols/Version_0_3_ProtobufProtocol.cs -------------------------------------------------------------------------------- /rethinkdb-net/Protocols/Version_0_4_JsonProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Protocols/Version_0_4_JsonProtocol.cs -------------------------------------------------------------------------------- /rethinkdb-net/Protocols/Version_0_4_ProtobufProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Protocols/Version_0_4_ProtobufProtocol.cs -------------------------------------------------------------------------------- /rethinkdb-net/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/Query.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryConverter.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/AvgAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/AvgAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/AvgGroupAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/AvgGroupAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/BetweenQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/BetweenQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ChangesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ChangesQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/CompoundIndexCreateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/CompoundIndexCreateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ConcatMapQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ConcatMapQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ContainsAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ContainsAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ContainsGroupAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ContainsGroupAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/CountAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/CountAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/CountGroupAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/CountGroupAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/DbCreateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/DbCreateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/DbDropQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/DbDropQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/DbListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/DbListQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/DbQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/DbQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/DeleteAndReturnValueQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/DeleteAndReturnValueQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/DeleteQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/DeleteQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/DeleteQueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/DeleteQueryBase.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/DistinctQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/DistinctQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/EqJoinQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/EqJoinQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ExprQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ExprQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ExprSequenceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ExprSequenceQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ExpressionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ExpressionUtils.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/FilterQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/FilterQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/GetAllQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/GetAllQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/GetQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/GetQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/GroupByFunctionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/GroupByFunctionQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/GroupByIndexQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/GroupByIndexQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/HasFieldsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/HasFieldsQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/IndexCreateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/IndexCreateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/IndexDropQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/IndexDropQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/IndexListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/IndexListQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/IndexStatusQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/IndexStatusQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/IndexWaitQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/IndexWaitQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/InnerJoinQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/InnerJoinQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/InsertQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/InsertQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/IsEmptyQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/IsEmptyQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/LImitQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/LImitQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/LimitQueryChangefeedCompatible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/LimitQueryChangefeedCompatible.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/MapGroupQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/MapGroupQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/MapQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/MapQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/MaxAggregateIndexQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/MaxAggregateIndexQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/MaxAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/MaxAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/MaxGroupAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/MaxGroupAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/MinAggregateIndexQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/MinAggregateIndexQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/MinAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/MinAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/MinGroupAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/MinGroupAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/NowQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/NowQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/NthQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/NthQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/OrderByIndexQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/OrderByIndexQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/OrderByQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/OrderByQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/OuterJoinQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/OuterJoinQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ReduceGroupQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ReduceGroupQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ReduceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ReduceQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ReplaceAndReturnValueQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ReplaceAndReturnValueQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ReplaceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ReplaceQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ReplaceQueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ReplaceQueryBase.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/SampleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/SampleQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/SkipQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/SkipQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/SliceQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/SliceQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/SumAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/SumAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/SumGroupAggregateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/SumGroupAggregateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/TableCreateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/TableCreateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/TableDropQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/TableDropQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/TableListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/TableListQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/TableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/TableQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/UngroupQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/UngroupQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/UnionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/UnionQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/UpdateAndReturnValueQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/UpdateAndReturnValueQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/UpdateQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/UpdateQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/UpdateQueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/UpdateQueryBase.cs -------------------------------------------------------------------------------- /rethinkdb-net/QueryTerm/ZipQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/QueryTerm/ZipQuery.cs -------------------------------------------------------------------------------- /rethinkdb-net/ReQLExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/ReQLExpression.cs -------------------------------------------------------------------------------- /rethinkdb-net/SynchronousApiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/SynchronousApiExtensions.cs -------------------------------------------------------------------------------- /rethinkdb-net/TaskUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/TaskUtilities.cs -------------------------------------------------------------------------------- /rethinkdb-net/UngroupObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/UngroupObject.cs -------------------------------------------------------------------------------- /rethinkdb-net/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/packages.config -------------------------------------------------------------------------------- /rethinkdb-net/regenerate_rethinkdb_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/regenerate_rethinkdb_spec.sh -------------------------------------------------------------------------------- /rethinkdb-net/rethinkdb-net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/rethinkdb-net.csproj -------------------------------------------------------------------------------- /rethinkdb-net/rethinkdb_spec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/rethinkdb_spec.cs -------------------------------------------------------------------------------- /rethinkdb-net/rethinkdb_spec.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfenniak/rethinkdb-net/HEAD/rethinkdb-net/rethinkdb_spec.proto --------------------------------------------------------------------------------