Skip to content

Commit aecacdd

Browse files
committed
Small fix for Linqpad sample, include Readme in Nuget package
1 parent c8c5fe8 commit aecacdd

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Linq2MongoDB.LINQPadDriver/Linq2MongoDB.LINQPadDriver.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
<Title>MongoDB LINQPad driver</Title>
1818
<Description>MongoDB LINQPad driver that allows you to access MongoDB using Linq queries without having to provide custom assembly types</Description>
1919
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
20-
<Version>1.0.0</Version>
20+
<Version>1.0.1</Version>
21+
<PackageReadmeFile>../README.md</PackageReadmeFile>
2122
</PropertyGroup>
2223
<ItemGroup>
2324
<PackageReference Include="LINQPad.Reference" Version="1.3.1" />

Linq2MongoDB.LINQPadDriver/linqpad-samples/CRUD.linq

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<Query Kind="Statements">
2+
<NuGetReference>MongoDB.Driver</NuGetReference>
3+
<Namespace>MongoDB.Driver</Namespace>
4+
<Namespace>MongoDB.Bson</Namespace>
25
</Query>
36

47
// Create Collection

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This is a LINQPad driver for MongoDB
22

3-
[![NuGet Version](https://img.shields.io/nuget/vpre/Linq2MongoDB.LINQPadDriver)](https://www.nuget.org/packages/Linq2MongoDB.LINQPadDriver) [![License](https://img.shields.io/github/license/Sirozha1337/Linq2MongoDB.LINQPadDriver)](MIT-LICENSE.txt)
3+
[![NuGet Version](https://img.shields.io/nuget/v/Linq2MongoDB.LINQPadDriver)](https://www.nuget.org/packages/Linq2MongoDB.LINQPadDriver) [![License](https://img.shields.io/github/license/Sirozha1337/Linq2MongoDB.LINQPadDriver)](https://github.com/Sirozha1337/Linq2MongoDB.LINQPadDriver/blob/main/LICENSE)
44

55
This driver allows you to query MongoDB using [LINQPad](https://www.linqpad.net/).
66

@@ -28,4 +28,4 @@ Setup connection
2828
* Collections will be exposed as capitalized names with all non-alphanumeric characters removed, e.g.: 'users-data' will be exposed as 'Usersdata'
2929
* Collections are exposed as IQueryable<BsonDocument>, to access the underlying collection use the `Collection` property, e.g.: `Usersdata.Collection`
3030
* To access the underlying MongoDB instance, use `Database`
31-
* See [examples](Linq2MongoDB.LINQPadDriver/linqpad-samples/CRUD.linq) for more information
31+
* See [examples](https://github.com/Sirozha1337/Linq2MongoDB.LINQPadDriver/blob/main/Linq2MongoDB.LINQPadDriver/linqpad-samples/CRUD.linq) for more information

0 commit comments

Comments
 (0)