I have an issue with mapping an object property to a column from a database function.
The database function returns a column called [On Hand]
. Therefore my model property is called OnHand
.
This obviously does not map correctly and fails to retrieve the data correctly for that column.
I have attempted the following in order to resolve this:
Editing the model to use an annotation
[Column("On Hand")]
public int OnHand { get; set; }
Using Fluent API
modelBuilder.Entity<BinDetail>()
.Property(e => e.OnHand)
.HasColumnName("On Hand");
Neither of these approaches have worked either together or independently.
The only way i can get this to work on the test database is to alter the return column of the function to [OnHand]
, however, due to other systems using this function, this is not an option to use on the live database.
Any suggestions anybody has would be greatly appreciated