In LINQ to Entities, I map the result set of a stored procedure to an entity. Within the stored procedure, I execute some update statements and return the result set by running a SELECT query and map
I\'m having trouble building an Entity Framework LINQ query whose select clause contains method calls to non-EF objects.
I am getting a NullReferenceException when I try and convert the following LINQ to EF query.What could be wrong here?
This question already has answers here: Dynamic LINQ OrderBy on IEnumerable<T> / IQueryable<T>
I Have Database that contains 4 tables TABLE TBLCARTITEM (CART_ID, ITEM_ID, PROMOTION_ID, many more cart item fields)
I crea开发者_StackOverflowted a data model that has some views from my database as entities,when I create a linq statment that has part of this view\'s entities ,the time processor take to execute the
Using LINQ to Entities, how can I determine if any item from a List of ints exists in a comma delimited string of ints?
I\'m not sure if this is the right thing to do, I\'m sure someone will tell me if it\'s not. I asked a question (Entity Framework - Include in sub query?) earlier this evening, which was answered ver
Bit of an odd question but is there a way of seeing what objects are attached to my object context. I am getting a few random problems and it would really be helpful to solve them if i could see w开发
W开发者_C百科e have classes public Invoice: EntityObject { public EntityCollection<InvoicePosition> Positions { get {...}; set{...}; }