私が得るエラーはこれです:
The 'SalesValue' property on 'ItemSale' could not be set to a 'Decimal' value.
You must set this property to a non-null value of type 'Single'.
しかし、私はすでにしました:
[Table("ItemSales")]
public class ItemSale {
[Key]
public int ID { get; set; }
....
public Single SalesValue { get; set; }
}
これが私のLINQです。十分に単純です:
from x in database.ItemSales
select x
Entity-Framework Code First を使用しています
これを解決するにはどうすればよいですか?