Giter Club home page Giter Club logo

Comments (9)

damieng avatar damieng commented on July 30, 2024

.NET 4.5 and ElasticSearch 1.5 are definitely supported and working here at Centurylink Cloud.

Are you going through a proxy server or using authentication?

Also could you try running Fiddler to see what the request and response for a query look like?

Thanks!

from elasticlinq.

prabhu avatar prabhu commented on July 30, 2024

Hi damien,

I have the elasticsearch locally. There is no authentication involved.

My connection details look like this.
private static ElasticConnection connection = new ElasticConnection(new Uri("http://localhost:9200"), null, null, null, POLICY_INDEX, null);
private static ElasticContext context = new ElasticContext(connection);

I also tried with just new Uri("") without anything else.

from elasticlinq.

damieng avatar damieng commented on July 30, 2024

Are you able to get anything back in your browser entering the url http://localhost:9200

from elasticlinq.

prabhu avatar prabhu commented on July 30, 2024

Yes. I am able to use NEST to perform insert and retrieval etc.

from elasticlinq.

damieng avatar damieng commented on July 30, 2024

What does you query and domain class look like? e.g.

public class Customer {
  public int Id { get; set}
  public string Name { get; set; }
}
...
var query = context.Query<Customer>().Where(c => c.Id > 6);

By default we'll attempt to map the T (in this case Customer) to the es type name 'customer'. If this isn't how your types are mapped you'd also get zero results.

If you set a breakpoint after the query but before a ToList / AsEnumerable and put query.ToQueryInfo() in the debug watch window you will see the body and uri parameters generated for your query.

from elasticlinq.

diskman avatar diskman commented on July 30, 2024

I have got same issue on 1.5.2
I am trying to query for bzp type:
var res3 = db.Query<Bzp>().Where(p => p.data_publikacji >= DateTime.Now.AddDays(-5) && p.data_publikacji < now.AddDays(5).Date); var str = res3.ToQueryInfo().Query;
There should be more than 600 results but it is 0.
"{\"filter\":{\"range\":{\"data_publikacji\":{\"gte\":\"2015-04-24T00:00:00+02:00\",\"lt\":\"2015-05-04T00:00:00+02:00\"}}},\"timeout\":\"10s\"}"
Type name is Bzp and in ES it is bzp

from elasticlinq.

prabhu avatar prabhu commented on July 30, 2024

Ok I have managed to solve my problem. The problem was the automatic camel casing by the context. Debugging by looking at the info helped in my case. Thank you.

from elasticlinq.

damieng avatar damieng commented on July 30, 2024

Glad that solved your problem prabhu.

Diskman, what does the Uri it is generating look like? (the .Uri property of ToQueryInfo())

from elasticlinq.

damieng avatar damieng commented on July 30, 2024

Original problem resolved. Diskman, if you are having issues still please open another issue.

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.