Coder Social home page Coder Social logo

Comments (6)

pepicrft avatar pepicrft commented on September 22, 2024

@thewhitewood have you tried to cast the response array?

users: [User]? = User("age", equalTo: "10").sorted(by:"name", ascending: true).find() as [User]?

from sugarrecord.

thewhitewood avatar thewhitewood commented on September 22, 2024

@pepibumur yeah, its saying it's to do with the call of

User("age", equalTo: "10")

I'm guessing this is based on an Extension?

from sugarrecord.

pepicrft avatar pepicrft commented on September 22, 2024

You shouldn't extend from other than the NSManagedObject because its extension conforms the required SugarRecordProtocols. Let me take a look later and I tell you what it's exactly happening @thewhitewood

from sugarrecord.

thewhitewood avatar thewhitewood commented on September 22, 2024

@pepibumur thanks - appreciate it

from sugarrecord.

pepicrft avatar pepicrft commented on September 22, 2024

Hello @thewhitewood . I've reviewed your comment and this is what you should do:

  1. I've updated the library to make it easier to install. Follow the steps in the README form the develop branch.
  2. Once you have it updated it's pretty easy to fetch users with a given age. You can do this way:
let users: [User]? = CoreDataObject.by(key: "age", equalTo: "22").sorted(by: "name", ascending: true).find() as [CoreDataObject]?

It's important to cast the results [CoreDataObject]? otherwise you'll get the "Extra Argument in Call" error.
Check if it works please!

from sugarrecord.

thewhitewood avatar thewhitewood commented on September 22, 2024

We're good - thanks!

from sugarrecord.

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.