Giter VIP home page Giter VIP logo

Comments (8)

alexandre-spieser avatar alexandre-spieser commented on May 27, 2024 1

Thanks for the feedback, I'll look into removing the static constructor.
I have not tested this, but are you sure you cannot overwrite the GuidRepresentation in the constructor of your repository though?

    public class TestRepository : BaseMongoRepository, ITestRepository
    {
        public TestRepository(string connectionString, string databaseName) : base(connectionString, databaseName)
        {
              MongoDbContext.SetGuidRepresentation(MongoDB.Bson.GuidRepresentation.CSharpLegacy);
        }
    }

According to https://github.com/mongodb/mongo-csharp-driver/blob/master/src/MongoDB.Driver/MongoDefaults.cs, it should not cause issues:

        /// <summary>
        /// Gets or sets the representation to use for Guids (this is an alias for BsonDefaults.GuidRepresentation).
        /// </summary>
        public static GuidRepresentation GuidRepresentation
        {
            get { return BsonDefaults.GuidRepresentation; }
            set { BsonDefaults.GuidRepresentation = value; }
        }

from mongodb-generic-repository.

alexandre-spieser avatar alexandre-spieser commented on May 27, 2024 1

yeah it does. I've also removed the static constructor in the last version of the repo ;)

from mongodb-generic-repository.

alexandre-spieser avatar alexandre-spieser commented on May 27, 2024

Hello,

The IMongoDbContext of the repository exposes the following method:

        /// <summary>
        /// Sets the Guid representation of the MongoDb Driver.
        /// </summary>
        /// <param name="guidRepresentation">The new value of the GuidRepresentation</param>
        void SetGuidRepresentation(MongoDB.Bson.GuidRepresentation guidRepresentation);

Allowing you set the guidRepresentation to whatever is needed for your application.

If you don't want to modify the global setting BsonDefaults.GuidRepresentation, you can specify the setting when you create your collection:

 IMongoDatabase db = ???;
 string collectionName = ???;
 var collectionSettings = new MongoCollectionSettings {
   GuidRepresentation = GuidRepresentation.Standard
 };
var collection = MongoDbContext.Database.GetCollection<BsonDocument>(collectionName, collectionSettings);

Then any GUIDs written to the collection will be in the standard format.

Note that when you read records from the database, you will get a System.FormatException if the GUID format in the database is different from the format in your collection settings.

from mongodb-generic-repository.

deus42 avatar deus42 commented on May 27, 2024

Yes, it is a bug in CosmosDB. I got rid of your repository (because of the static constructor) and use CSharpLegacy type. Otherwise, it won't work. I encourage you to remove the static constructor.

from mongodb-generic-repository.

deus42 avatar deus42 commented on May 27, 2024

It is not causing an issue with MongoDB, but rather with CosmosDB with mongo wire protocol.

from mongodb-generic-repository.

StephenStrickland avatar StephenStrickland commented on May 27, 2024

Using MongoDbContext.SetGuidRepresentation() fixes the issue with Cosmos DB

from mongodb-generic-repository.

jasonhartsell avatar jasonhartsell commented on May 27, 2024

I'm still having trouble with this and can't seem to get the document records to show up in Azure Cosmos DB. Could you please elaborate on how the override is used and where it needs to be instantiated? Also, do I need to make some changes to the Startup or anything around the Document to associate to the user?

from mongodb-generic-repository.

pfekrati avatar pfekrati commented on May 27, 2024

I also can't get the docs to show up in CosmosDB. I'm getting this error: "Error querying documents: The GuidRepresentation for the reader is CSharpLegacy, which requires the binary sub type to be UuidLegacy, not UuidStandard"

I tried below code, but it's not working:

public class MongoDbRepository : BaseMongoRepository, IDocumentDbRepository
{
    public MongoDbRepository(string connectionString, string databaseName) : base(connectionString, databaseName)
    {
        MongoDbContext.SetGuidRepresentation(MongoDB.Bson.GuidRepresentation.CSharpLegacy);
    }
}

from mongodb-generic-repository.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.