cbp123

Results 4 issues of cbp123

See the attached screenshot ![image](https://user-images.githubusercontent.com/1452529/111070503-29b65a00-8526-11eb-8150-eb5e5f357b12.png)

The relevant code is in MemberGetEmitter (and possibly elsewhere in the codebase): ``` if (fieldInfo.DeclaringType.IsEnum) this.Generator.ldc_i4((int) fieldInfo.GetValue((object) fieldInfo.DeclaringType)).boxIfValueType(fieldInfo.FieldType); else this.Generator.ldfld(fieldInfo.IsStatic, fieldInfo).boxIfValueType(fieldInfo.FieldType); ``` A little known fact of C# is that...

In FluentNH 1.2 and prior the class AssemblyTypeSource implemented the ITypeSource.GetTypes method using Assembly.GetExportedTypes. The new implementation in FluentNH uses Assembly.GetTypes. GetExportedTypes only requires dependent DLLs to be in the...

documentation

Hi there, We are using this package in EF6 and it's working well, but running into trouble with where to register hooks exactly. The logical place is in the constructor...