microsoft / PowerPlatform-DataverseModelBuilder

Code Replica for the Microsoft Power Platform Dataverse Model Builder and supporting nuget packages
MIT License
14 stars 7 forks source link

File Attributes should be typed as Guid rather than object #26

Open daryllabar opened 3 months ago

daryllabar commented 3 months ago

Currently File Column attributes are being generated as objects, even though they are actually GUIDS.

[Microsoft.Xrm.Sdk.AttributeLogicalNameAttribute("acme_file")]
public object Acme_File
{
    [System.Diagnostics.DebuggerNonUserCode()]
    get
    {
        return this.GetAttributeValue<object>("acme_file");
    }
}