Click here to Skip to main content
15,899,679 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Windows Form VB 2010 Pin
Dave Kreskowiak16-Feb-15 10:38
mveDave Kreskowiak16-Feb-15 10:38 
GeneralRe: Windows Form VB 2010 Pin
BobbyStrain16-Feb-15 12:15
BobbyStrain16-Feb-15 12:15 
GeneralRe: Windows Form VB 2010 Pin
Dave Kreskowiak16-Feb-15 12:31
mveDave Kreskowiak16-Feb-15 12:31 
GeneralRe: Windows Form VB 2010 Pin
Richard MacCutchan16-Feb-15 21:18
mveRichard MacCutchan16-Feb-15 21:18 
GeneralRe: Windows Form VB 2010 Pin
BobbyStrain17-Feb-15 5:39
BobbyStrain17-Feb-15 5:39 
GeneralRe: Windows Form VB 2010 Pin
Richard MacCutchan17-Feb-15 6:06
mveRichard MacCutchan17-Feb-15 6:06 
GeneralRe: Windows Form VB 2010 Pin
BobbyStrain17-Feb-15 10:35
BobbyStrain17-Feb-15 10:35 
QuestionEntity Framework : Using summary functions inside a projection Pin
dilkonika15-Feb-15 16:30
dilkonika15-Feb-15 16:30 
I'm trying to run the following query :
SQL
Dim lst = (From t In context.MyObj1 where t1.id>6 Select New With { _
 .Parent = t, _
  .sash = t.child1.AsQueryable.Where(Function(t2) t2.tp=2).Sum(Function(t3) t3.quantity), _
 .vlh = t.child1.AsQueryable.Where(Function(t3) t3.tp=2).Sum(Function(t3) t3.value) _
}).ToList


( in this query .quantity and .value have Decimal type.)

but I'm getting this error on runtime :
CSS
An unhandled exception of type 'System.InvalidOperationException' occurred in EntityFramework.dll
Additional information: The cast to value type 'System.Decimal' failed because the materialized value is null.
Either the result type's genericparameter or the query must use a nullable type.

It's sure that the collection child1 has items that have .tp=2.

What's wrong ? Thank you !
AnswerRe: Entity Framework : Using summary functions inside a projection Pin
Dave Kreskowiak15-Feb-15 17:42
mveDave Kreskowiak15-Feb-15 17:42 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
dilkonika15-Feb-15 17:50
dilkonika15-Feb-15 17:50 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
Dave Kreskowiak16-Feb-15 2:47
mveDave Kreskowiak16-Feb-15 2:47 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
dilkonika16-Feb-15 7:54
dilkonika16-Feb-15 7:54 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
Dave Kreskowiak16-Feb-15 9:41
mveDave Kreskowiak16-Feb-15 9:41 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
Richard MacCutchan15-Feb-15 22:03
mveRichard MacCutchan15-Feb-15 22:03 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
dilkonika16-Feb-15 6:35
dilkonika16-Feb-15 6:35 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
Richard Deeming16-Feb-15 8:43
mveRichard Deeming16-Feb-15 8:43 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
dilkonika16-Feb-15 8:52
dilkonika16-Feb-15 8:52 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
Richard Deeming16-Feb-15 9:01
mveRichard Deeming16-Feb-15 9:01 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
dilkonika16-Feb-15 9:11
dilkonika16-Feb-15 9:11 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
Richard Deeming16-Feb-15 9:20
mveRichard Deeming16-Feb-15 9:20 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
dilkonika16-Feb-15 9:29
dilkonika16-Feb-15 9:29 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
Richard Deeming16-Feb-15 9:36
mveRichard Deeming16-Feb-15 9:36 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
dilkonika16-Feb-15 15:24
dilkonika16-Feb-15 15:24 
GeneralRe: Entity Framework : Using summary functions inside a projection Pin
Richard Deeming17-Feb-15 3:17
mveRichard Deeming17-Feb-15 3:17 
QuestionHow do I upload a image for a user profile ? Pin
Member 1144766215-Feb-15 5:35
Member 1144766215-Feb-15 5:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.