No announcements
Found 3665401 threads
-
0 Votes
Populate ObservableCollection<myClass> with Entity Framework Entity using Linq ?
I am populating an ObservableCollection<myCustomer> from an Entity Framework Entity and binding this collection to a ...Answered | 7 Replies | 2414 Views | Created by Rich P123 - Monday, August 7, 2017 4:55 PM | Last reply by DA924x - Tuesday, August 8, 2017 3:33 AM -
0 Votes
Entity Framework Linq to Entities and variable entity name
See http://blogs.microsoft.co.il/blogs/gilf/archive/2010/01/25/table-per-concrete-type-inheritance-in-entity-framework.aspx for a ...Answered | 5 Replies | 22635 Views | Created by kawzaki - Friday, September 17, 2010 4:37 AM | Last reply by juguy - Tuesday, August 27, 2013 2:28 PM -
1 Votes
LINQ versus Entity Framework
http://www.osellus.com/blogs/2009/06/04/linq-to-sql-vs-entity-framework/Answered | 5 Replies | 17227 Views | Created by akoranteng - Friday, October 30, 2009 11:18 PM | Last reply by davesd - Saturday, October 16, 2010 8:32 AM -
0 Votes
Using Linq and Entity Framework with WCF
If it's a simple N-tire project, you can just use the types generated by Entity Framework.Answered | 3 Replies | 3367 Views | Created by Xin.Qian - Friday, September 23, 2011 4:19 PM | Last reply by Renato Mattos - Friday, October 21, 2011 2:11 PM -
2 Votes
WPF with Entity Framework or Linq?
Linq or Entity Framework?Answered | 4 Replies | 4114 Views | Created by PHE Admin - Tuesday, February 8, 2011 6:55 PM | Last reply by Cor Ligthert - Friday, February 11, 2011 3:37 PM -
0 Votes
Linq query convert to ObservableCollection
depends on what you select, if you select MyClass you will get IEnumerable<MyClass> to pass it to your ...Answered | 28 Replies | 20888 Views | Created by GearWorld - Saturday, November 13, 2010 11:10 AM | Last reply by Alan-Sy - Monday, November 15, 2010 10:38 PM -
0 Votes
How to implement extension for Linq to HQL generator in Entity Framework (needed SQL 'LIKE' with LINQ to Entities)
http://msdn.microsoft.com/en-us/library/bb738684.aspx You can query against any entity or entities you want, new-up an ...Answered | 3 Replies | 2460 Views | Created by gresspav - Tuesday, June 11, 2013 5:52 AM | Last reply by darnold924 - Tuesday, June 11, 2013 1:37 PM -
1 Votes
Convert sql to linq/entiti framework
If you only want Usuarios with a Relacione this should work: var res = (from r in context.Relaciones join u in context.Usuario on u.idUsuario equals r.idUsuario select ...Answered | 3 Replies | 654 Views | Created by Felipe bird - Saturday, November 7, 2015 7:04 PM | Last reply by Magnus (MM8) - Wednesday, November 11, 2015 1:04 PM -
1 Votes
To Entity or Linq?
The official statement is that for prototypes and throw-away projects you should use Linq-2-sql, for any serious development use Entity ...Answered | 2 Replies | 2390 Views | Created by KindReality - Thursday, August 18, 2011 4:17 PM | Last reply by Jesse Houwing - Thursday, August 18, 2011 6:29 PM -
1 Votes
Entity framework
Hi, Yes, as @Magnus said that if we use the entity framework, we can use linq or lambda expression as well.Answered | 2 Replies | 946 Views | Created by Shirly11 - Sunday, August 3, 2014 3:23 PM | Last reply by Amy Peng - Monday, August 4, 2014 11:06 AM -
1 Votes
Entity Framework and LINQ to Entities - When is the 'AddTo..' method required?
. - www.huagati.com - Cool tools for Linq-to-SQL and Entity Framework: www.huagati.com/dbmltoolsAnswered | 3 Replies | 6203 Views | Created by GraemeWhelan - Tuesday, April 28, 2009 8:22 PM | Last reply by KristoferA - Wednesday, April 29, 2009 4:08 PM -
1 Votes
MySQL Support for Entity Framework and LINQ
MySQL Connector/Net offers Entity Framework support.Answered | 4 Replies | 6729 Views | Created by EagleRed - Wednesday, October 7, 2009 6:10 PM | Last reply by Michael Sun [MSFT] - Monday, October 12, 2009 12:38 PM -
0 Votes
LINQ and Entity Framework query problem
If it is an entity which mapped to database, it is obvious that we can't create a new FaultReport instance in the Linq query statement.Answered | 8 Replies | 3458 Views | Created by Xience - Wednesday, January 4, 2012 3:55 PM | Last reply by Xience - Wednesday, January 11, 2012 11:17 PM -
0 Votes
Entity Framework
There are no complete step by step guides for Entity Framework online or downloadable.Answered | 2 Replies | 765 Views | Created by John sot - Sunday, January 15, 2017 12:28 AM | Last reply by Kareninstructor - Sunday, January 15, 2017 1:11 AM -
0 Votes
Learn First: LINQ or Entity Framework
Since the syntax is like LINQ, as you say, then EF would be the best option.Answered | 2 Replies | 1938 Views | Created by Stu Ryan - Monday, November 28, 2011 8:55 PM | Last reply by Stu Ryan - Tuesday, November 29, 2011 5:55 PM -
0 Votes
Entity Framework Speed Consideration
On 2/23/2012 4:40 PM, Francis Beaucage wrote: > Hello, > > I am building a rather large application with Entity ...Answered | 2 Replies | 2039 Views | Created by Francis Beaucage - Thursday, February 23, 2012 9:40 PM | Last reply by Alan_chen - Friday, March 2, 2012 9:01 AM -
2 Votes
Entity Framework anonymous type
Not Linq to entities.Answered | 15 Replies | 3842 Views | Created by stelios84 - Tuesday, October 13, 2015 1:05 PM | Last reply by DA924 - Friday, October 16, 2015 1:41 PM -
3 Votes
entity framework
The use of db.AddToEmps(Em); is still valid in Entity Framework but the new recommended way to add an object to the Emps table is to use db.Emps.AddObject(Em); as ...Answered | 4 Replies | 2406 Views | Created by bobbyangara - Friday, December 16, 2011 4:28 AM | Last reply by Fernando Soto - MCSD - Saturday, December 17, 2011 2:27 AM -
1 Votes
Difference between LINQ to SQL and LINQ to Entity
Entity Framework vs.Answered | 5 Replies | 12004 Views | Created by chandu123 - Monday, February 28, 2011 4:53 PM | Last reply by darnold92 - Wednesday, March 2, 2011 5:37 AM -
0 Votes
Entity Framework
If you want to use other tables, you could use update model from database if you use database first.Answered | 2 Replies | 527 Views | Created by Tuyet5555 - Friday, September 30, 2016 7:20 PM | Last reply by Zhanglong Wu - Monday, October 3, 2016 5:29 AM - Items 1 to 20 of 3665401 Next ›
No announcements