Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created August 15, 2018 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/7b521d6941294805b2a64de0f115749f to your computer and use it in GitHub Desktop.
Save juucustodio/7b521d6941294805b2a64de0f115749f to your computer and use it in GitHub Desktop.
Example of how to implement local database in your Xamarin.Forms applications - http://julianocustodio.com/litedb
namespace DemoLiteDB
{
public class Customer
{
public int Id { get; set; }
public string Name { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment