The C# driver will generate the first one (the Id) for you automatically, but the second one (the BookId) is just another data field to the driver, so it would be the application's responsibility to generate the next available unique BookId.
One way I have seen people generate the next available custom integer Id is by using a sequences collection to keep track of the next available Id. This is how it would look using the MongoDB shell:
> db.sequences.insert({ _id : "BookId", nextId : 1 })
> db.sequences.find()
{ "_id" : "BookId", "nextId" : 1 }
>
> var result = db.sequences.findAndModify({
... query : { _id : "BookId" },
... update : { $inc : { nextId : 1 }}
... })
> result
{ "_id" : "BookId", "nextId" : 1 }
>
> db.sequences.find()
{ "_id" : "BookId", "nextId" : 2 }
>
This does require an extra round trip to the database to find the next available Id.