Giter Site home page Giter Site logo

Comments (4)

damieng avatar damieng commented on June 11, 2024 2

The IElasticMapping interface lets you plug-in whatever mechanism you like. You could easily change the above example to use a dictionary and expose a SetDocumentType method on it to add to that dictionary.

from elasticlinq.

damieng avatar damieng commented on June 11, 2024

The ElasticContext constructor can take an object that implements IElasticMapping which is responsible for figuring out all typenames, property names etc. By default it instantiates a TrivialElasticMapping which does some things like camel casing etc.

I'd recommend starting with subclassing TrivialElasticMapping and just overriding what you need, e.g.

public class CustomElasticMapping : TrivialElasticMapping {
  public override string GetDocumentType(Type type) {
    if (type.Name == "CodesAntiTheftDeviceModel") return "antitheft_device_code";
    return base.GetDocumentType(type).ToLower();
  }
}
...
var context = new ElasticContext(..., new CustomElasticMapping());

from elasticlinq.

xplatsolutions avatar xplatsolutions commented on June 11, 2024

That is a workaround I can use for now but it would be nice to add something simpler so we can use in a base repository while creating the options/context or even a SetDocumentType(Type, string) method with holding internally a dictionary to resolve in runtime.

Thank you for your quick response.

from elasticlinq.

xplatsolutions avatar xplatsolutions commented on June 11, 2024

It's sufficient, it worked great!

from elasticlinq.

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.