The following code results in multiple DISTINCT to same table:
.Field(new Field("InventoryServer.OSLevelId")
.SetFormatter(Format.IfEmpty(null))
.Options(new Options()
.Table("Product")
.Value("Id")
.Label("Name")
)
)
.Field(new Field("InventoryServer.ModelId")
.SetFormatter(Format.IfEmpty(null))
.Options(new Options()
.Table("Product")
.Value("Id")
.Label("Name")
)
)
Is there a way to tell Editor .NET and Editor Client to reference the same options collection?