これは私のコードです:
public DateTime GibSomeStartDate(IEnumerable<int> partnerNumbers, DateTime startTime)
{
var contractsStartDate = from contract in this.databaseContext.Contract
where partnerNumbers.Contains(contract.Pnr)
&& contract.SomeDateTime >= startTime
select contract.SomeDateTime;
}
contractsStartDate.Min()
例外を呼び出すと、次のようになります。
Unable to create a null constant value of type 'System.Collections.Generic.IEnumerable`1'. Only entity types, enumeration types or primitive types are supported in this context.
クエリの何が問題になっていますか?
contractsStartDate
タイプ ですSystem.Data.Entity.Infrastructure.DbQuery
EF 5.0
databaseContext
の子ですSystem.Data.Entity.DbContext