I have seen that there are so wonderful ways in Xcode to design your CoreData models - is there a way to make use of this and CoreData in general in MonoTouch 5? Any tutorials or examples?
相关问题
- Core Data lightweight migration crashes after App
- Can two managed object context share one single pe
- System.IO.MemoryMappedFiles on MonoTouch?
- Is it possible to use NSUbiquitousKeyValueStore wi
- Monotouch PInvoke System.EntryPointNotFoundExcepti
相关文章
- Generate code for core data attributes in xcode 4
- How to use native C++ libraries in Mono for Androi
- Core Data sort descriptor with NSDate, iOS with Sw
- NSFetchedResultsChangeUpdate fired instead of NSFe
- Case Insensitive Compare with Core Data and Swift
- Renaming coredata .xcdatamodeld file and migration
- UTF-16 safe substring in C# .NET
- How to programmatically select a row in UITableVie
Here is the documentation for CoreData in Mono.
This blog post is almost two years old, but the only example I could find of using CoreData in Mono.
Most relevant to your question, however, this bug/request is for integrating Xcode's tools into Mono. It doesn't seem to even be under development yet.
Edit: You can also use
/Applications/Xcode.app/Contents/Developer/usr/bin/momc <source xcdatamodel> <absolute path to target>
to generate the.momd
. I'm still working on getting it integrated better - see this question.Maybe is not the direct answer to your question but might be what you
are looking for:
Sqlite-net is an open source, minimal library to allow .NET and Mono applications to store data in SQLite 3 databases. <-
the one you are using but for future reference
Vici CoolStorage is a fully typed Object Relational Mapping library for .NET 3.5, Windows Phone, MonoTouch and Mono for Android
Catnap is a basic lightweight ORM for .NET. It uses the ADO.NET API. The project includes an adapter for Sqlite, and it is tested with System.Data.Sqlite and Mono.Data.Sqlite.
MonoTouch.SQLite An abstract UITableViewController to make displaying data from an SQLite table simpler.
Entify is entity framework for desktop and mobile applications. It aims to be stable and easy-to-use library that is effortless to deploy with any application. It has visual designer which allows developer to define application data model easily and quickly.
entify
, it has not been updated sinceApr 11, 2010
so idk if it still worksThe only thing I could find about
MonoTouch
andCoreData
was this blog post.Hope this helps.
Alex