EntityFramework.Docs icon indicating copy to clipboard operation
EntityFramework.Docs copied to clipboard

Workarounds for Xamarin.iOS app with EFCore 2.0

Open bricelam opened this issue 8 years ago • 10 comments

Updated to current known issues and workarounds:

  • ~~For Xamarin.Android, use package.config instead of PackageReference (dependent on https://github.com/xamarin/xamarin-android/issues/1196).~~
  • For Xamarin.Android, try changing AndroidLinkMode to SdkOnly ( https://github.com/aspnet/EntityFrameworkCore/issues/11027#issuecomment-374425403) or other workarounds to preserve additional reflection metadata, e.g. [assembly: Preserve (typeof (System.Linq.Queryable), AllMembers = true)] (dependent on https://github.com/aspnet/EntityFrameworkCore/issues/10963) or using a LinkDescription.xml file.
  • For SQLite, use SQLitePCL.Batteries_V2.Init() (see https://github.com/ericsink/SQLitePCL.raw/wiki/SQLitePCL.Batteries.Init).
  • Tooling is blocked on the fact that the linker used by Xamarin removes assembly level attributes (see https://github.com/xamarin/xamarin-macios/issues/3655).

Good sample app link applying workarounds by @cwrea: https://github.com/cwrea/XamarinTodo/tree/master

Original Issue:

From @alexdrl on November 21, 2017 8:44

A Xamarin.iOS app with EFCore 2.0 needs a call to

SQLitePCL.Batteries_V2.Init();

If the call is not made, the app initialization throws this error message.

You need to call SQLitePCL.raw.SetProvider(). If you are using a bundle package, this is done by calling SQLitePCL.Batteries.Init().

Like explained here

Steps to reproduce

Xamarin.iOS project working with EFCore 2.0. Solution with a common .NET Standard project which shares code between iOS and Android, using PackageReference.

Further technical details

EF Core version: 2.0.0 Database Provider: Microsoft.EntityFrameworkCore.Sqlite Operating system: iOS IDE: Visual Studio 15.4

Copied from original issue: aspnet/EntityFrameworkCore#10361

bricelam avatar Jan 05 '18 23:01 bricelam

Correct. I don't think Xamarin.iOS can handle the Assembly.Load() call. And binding directly to SQLitePCLRaw.batteries_v2.dll will cause problems if you're not using a bundle.

bricelam avatar Jan 05 '18 23:01 bricelam

From @alexdrl on November 22, 2017 18:27

I use the SQLitePCLraw assembly that gets added as a transitive dependency, and call that Init method, the app works correctly. In the project assets json, the Xamarin.iOS SQLitePCLraw package gets restored correctly.

bricelam avatar Jan 05 '18 23:01 bricelam

We should probably document this on the Supported .NET Implementations page or thereabouts.

bricelam avatar Jan 05 '18 23:01 bricelam

From @alexdrl on November 22, 2017 18:31

The documentation already stated that there are problems in Xamarin.iOS but there is no page that describes this (or other) workarounds.

bricelam avatar Jan 05 '18 23:01 bricelam

Worth noting here, with respect to the Entity Framework Core 2.1 release, and the Visual Studio 15.7.3 releases of Xamarin.iOS and Xamarin.Android:

  • Xamarin.iOS apps using EF Core 2.1 won't build: https://github.com/xamarin/xamarin-macios/issues/4168.

  • Xamarin.Android apps using EF Core 2.1 can't use linking: https://github.com/xamarin/xamarin-android/issues/1813.

At present, the only known workaround for Xamarin mobile app developers wishing to use Entity Framework Core is to not upgrade to the 2.1 release. i.e. Stay on 2.0.3 until the underlying Xamarin platforms have addressed deficiencies related to the new System.Memory 4.5 dependency that was introduced (indirectly) as part of the newer packages that EF Core 2.1 now depends on. I am not aware of any timeline with respect to when these issues may be fixed.

cwrea avatar Jun 13 '18 17:06 cwrea

@cwrea Thank you for mentioning this. I would've spent hours debugging that issue if I hadn't seen your comment first! Literally saved us hundreds of dollars!

dfoulk avatar Jun 21 '18 19:06 dfoulk

@dfoulk You're welcome. FWIW, since I posted that, there's hope that Visual Studio 15.8 Preview 3 may address these issues. See my comment from a couple of days ago at https://github.com/xamarin/xamarin-macios/issues/4168#issuecomment-398521666 ... I haven't tried the preview myself, yet. Tied up in other project work at the moment.

cwrea avatar Jun 21 '18 20:06 cwrea

@cwrea very weird. I'm running ef core 2.1 on my android and native UWP and it works and builds fine (debug and release) , but I'm using Microsoft.Extentions.primitives version 2.0

Pinox avatar Jun 22 '18 13:06 Pinox

@Pinox Do you have linking enabled? The oustanding Android issue is specific to having linking enabled.

cwrea avatar Jun 22 '18 15:06 cwrea

@cwrea In release mode I have "SDK Assemblies" and in debug mode "none".

Edit Ignore my comments as this morning my projects also do not work anymore with ef core 2.1

Pinox avatar Jun 22 '18 15:06 Pinox