Search Issue Tracker
Won't Fix
Fixed in 2018.3.X
Votes
0
Found in
2017.4.12f1
2018.1.1f1
2018.1.9f2
2018.2.16f1
2018.3.0b9
2019.1.0a8
Issue ID
1094621
Regression
No
[IL2CPP] Certain LINQ query operation return null
Steps to reproduce:
1. Download attached project
2. Build a "scene" for the Standalone platform
3. Launch player
Expected results: operation returns the correct value
Actual results: operation returns null
Reproduced with: 2019.1.0a8, 2018.3.0b9, 2018.2.16f1, 2018.1.9f2
LINQ operation (from SQLite client):
var tableAttr =
typeInfo.CustomAttributes
.Where(x => x.AttributeType == typeof(TableAttribute))
.Select(x => (TableAttribute)Orm.InflateAttribute(x))
.FirstOrDefault ();
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- SystemInfo.get_graphicsDeviceName() is generating garbage GC Alloc when using Metal graphics API
- Crash on D3D12CommonShader::ApplyGpuProgram when attaching material which samples "_UnityFBInput0" to "Full Screen Pass Renderer Feature" Component
- SpeedTree meshes and objects count differs when comparing the numbers in the Player with the Editor
- Model and Prefab Preview icons are not updated after upgrading associated Materials to URP
- Game view is rendered white when viewing the Editor with HDR display and Post Proccesing is enabled on the Main Camera with 2D URP
Resolution Note (2019.1.X):
We've corrected a problem was related to the AttributeType property of the CustomAttributeData type returned from TypeInfo.CustomAttributes. IL2CPP was providing the based class type (System.Attribute) instead of TableAttribute. The SQLLite code also uses the ConstructorArguments part of TypeInfo. Supporting this properly is difficult in IL2CPP now, as we will need to collect significantly more metadata and ship that metadata with the final build of a game. We're not planning to do that now, as it will increase distribution size too much.