Skip to content

CarsonC01/realm-dotnet

 
 

Repository files navigation

Realm

Realm is a mobile database that runs directly inside phones, tablets or wearables.

This repository holds the source code for the .NET / C# versions of Realm. Currently, we only support Xamarin, specifically Xamarin.iOS, and Xamarin.Android. We do plan to support Xamarin.Mac, UWP, and Unity in the future.

Features

  • Mobile-first: Realm is the first database built from the ground up to run directly inside phones, tablets and wearables.
  • Simple: Data is directly exposed as objects and queryable by code, removing the need for ORM's riddled with performance & maintenance issues. Plus, we've worked hard to keep our API down to just 2 common classes (RealmObject and Realm): most of our users pick it up intuitively, getting simple apps up & running in minutes.
  • Modern: Realm supports relationships, generics, vectorization and modern C# idioms.
  • Fast: Realm is faster than even raw SQLite on common operations, while maintaining an extremely rich feature set.

Getting Started

Please see the detailed instructions in our User Guide to add Realm to your solution.

Documentation

The documentation can be found at realm.io/docs/xamarin/latest.
The API reference is located at realm.io/docs/xamarin/latest/api.

Getting Help

  • Need help with your code?: Look for previous questions on the #realm tag — or ask a new question. We activtely monitor & answer questions on SO!
  • Have a bug to report? Open an issue. If possible, include the version of Realm, a full log, the Realm file, and a project that shows the issue.
  • Have a feature request? Open an issue. Tell us what the feature should do, and why you want the feature.
  • Sign up for our Community Newsletter to get regular tips, learn about other use-cases and get alerted of blogposts and tutorials about Realm.

Building Realm

We highly recommend using our pre-built binaries via NuGet but you can also build from source.

Prerequisites:

  • If you target Android/iOS via Xamarin: Xamarin Community or above.
  • Windows platforms: Visual Studio 2015.
  • Building Xamarin iOS apps also requires Xcode 8.1.
  • If you are using Xamarin Studio, the StyleCop Support add-in is required.

We support the current Xamarin Stable update channel, at the time of release this corresponded to:

  • Xamarin iOS version 10.3.1.8
  • Xamarin Android version 7.0.2.42
  • Xamarin Studio version 6.1.4

Note for Debugging that the following steps mention building for Release. If you are debugging, just substitute Debug and you probably also want to choose Debug | iPhoneSimulator as a platform.

  1. Download and build the native libraries using the instructions in wrappers/README.md
  2. Open the Realm.sln in Xamarin Studio on macOS
    1. Choose the Solution Realm in the Solution navigator and use the context menu to Clean Realm
    2. Use the context menu on the solution again and choose Restore NuGet Packages
    3. Choose the platform popup Release | Default
    4. select Platform.PCL/Realm.PCL project and Build
    5. select Platform.PCL/Realm.Sync.PCL project and Build
    6. select Weaver/RealmWeaver.Fody project and build
    7. select platform popup Release | ARM
    8. select Platforms.XamarinAndroid/Realm.XamarinAndroid project and Build
    9. select Platforms.XamarinAndroid/Realm.Sync.XamarinAndroid project and Build
    10. ensure you have an iOS device attached
    11. select platform popup Release | iPhone
    12. select Realm.XamarinIOS project and Build
    13. select Realm.Sync.XamarinIOS project and Build
  3. If you want to build the NuGet packages, go on from this point and follow the steps in internals/RealmDotnetNugetBuild.md

If you are actively testing code against the Realm source, see also the unit test projects and other tests under the Tests folder.

Contributing

See CONTRIBUTING.md for more details!

This project adheres to the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to info@realm.io.

License

Realm is published under the Apache 2.0 license.
The underlying core is available under the Realm Core Binary License while we work to open-source it under the Apache 2.0 license.

This product is not being made available to any person located in Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, or to any other person that is not eligible to receive the product under U.S. law.

Feedback

If you use Realm and are happy with it, all we ask is that you please consider sending out a tweet mentioning @realm, or email help@realm.io to let us know about it!

And if you don't like it, please let us know what you would like improved, so we can fix it!

analytics

About

Realm is a mobile database: a replacement for SQLite & ORMs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 91.0%
  • C++ 7.4%
  • Makefile 0.5%
  • JavaScript 0.3%
  • CSS 0.3%
  • HTML 0.2%
  • Other 0.3%