-
-
Notifications
You must be signed in to change notification settings - Fork 581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Library does not work on Xamarin.iOS #320
Comments
FastMember library is not necessary, there are situations where it is not used, for example with OwnedTypes DataTable is used instead of library FastMember since it does not work in that case. EFCore.BulkExtensions/EFCore.BulkExtensions/SqlBulkOperation.cs Lines 58 to 63 in 81aaa92
|
I have added Remark about it in the ReadMe. |
On Xamarin.iOS one usually uses SQLite. The SQLite path uses FastMember no matter what. The way without fastmember is only included on SQL Server. So the cominbation Xamarin.iOS and SQLite does not work. |
FastMember dependency is now removed. |
Use of FastMember does not allow deployment to Xamarin.iOS prod builds. For some reason it works in the emulator and when in Debug mode for me, but the Staging builds yield a runtime error.
FastMember library mentions that it does not support AOT environments like Xamarin.iOS. Is it possible to detect these environments and avoid using this library in these cases? Alternatively, some documentation clarifying that these libraries cannot be used on Xamarin.iOS so that people don't waste their time and find out in staging test environment?
The text was updated successfully, but these errors were encountered: