All Versions
83
Latest Version
Avg Release Cycle
22 days
Latest Release
335 days ago
Changelog History
Page 9
Changelog History
Page 9
-
v0.71.1 Changes
January 29, 2016๐ Minor Fixes
๐ Building IOS apps targeting the simulator sometimes got an error like:
Error MT5209: Native linking error...building for iOS simulator, but linking in object file built for OSX, for architecture i386 (MT5209)
๐ This was fixed by removing a redundant simulator library included in NuGet
-
v0.71.0 Changes
January 25, 2016๐ Uses Realm core 0.95.6.
Platform Changes
๐ Now supporting:
- Xamarin Studio on Mac - IOS and Android
- ๐ Xamarin Studio on Windows - Android
- ๐ Visual Studio on Windows - IOS and Android
Major Changes
- โ Added Android support as listed above.
- โ Added
RealmConfiguration
to provide reusable way to specify path and other settings. - โ Added
Realm.Equals
,Realm.GetHashCode
andRealm.IsSameInstance
to provide equality checking so you can confirm realms opened in the same thread are equal (shared internal instance). - โ Added
Realm.DeleteFiles(RealmConfiguration)
to aid in cleaning up related files. - โ Added nullable basic types such as
int?
. - Optimised
Realm.All<userclass>().Count()
to get rapid count of all objects of given class. - ๐ Related lists are now supported in standalone objects.
LINQ
Count()
onWhere()
implemented.Any()
onWhere()
implemented.First( lambda )
andSingle( lambda )
implemented.- Significant optimisation of
Where()
to be properly lazy, was instantiating all objects internally.
API-Breaking Changes
[PrimaryKey]
attribute renamed[ObjectId]
.Realm.Attach(object)
renamedManage(object)
.- Lists of related objects are now declared with
IList<otherClass>
instead ofRealmList
.
๐ Bug fixes
- ๐ Bug that caused a linker error for iPhone simulator fixed (#375)
-
v0.70.0 Changes
December 08, 2015Requires installation from private copy of NuGet download.
State
- ๐ Supported IOS with Xamarin Studio only.
- Basic model and read/write operations with simple LINQ
Where
searches. - NuGet hosted as downloads from private realm/realm-dotnet repo.