Just Curious
-
Linq-to-Entities here
"Coming soon"
:thumbsup: Same here.
-
How is Linq-To-Entites different than Entity Framework? or are they one in the same?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
linq to entities can work with EF entities, but it is not EF per se. Hope that makes some sense.
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Only for CRUD. For heavy lifting you need to go back to proper SQL. I do use Linq2objects a lot though.
Wrong is evil and must be defeated. - Jeff Ello
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Forced to use NHibernate X| But I would rather use one of these: https://www.slant.co/topics/16667/~orms-for-c[^]
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Yep, it's awesome!
They call me different but the truth is they're all the same! JaxCoder.com
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Do you mean something like
(from row in context.Person
where row.Name.Contains("foo")
select row).Take(10).ToList()Do you (erroneously) "oppose it" to something like
context.Person.Where(x => x..Name.Contains("foo")).Take(10).ToList()
I guess I do then... but I usually use both syntax. Sometimes in the same query.
A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!
-
Forced to use NHibernate X| But I would rather use one of these: https://www.slant.co/topics/16667/~orms-for-c[^]
Or you can roll your own.
Wrong is evil and must be defeated. - Jeff Ello
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
Or you can roll your own.
Wrong is evil and must be defeated. - Jeff Ello
Too busy with community engineering on CodeProject nowadays :-\
-
How often have you ported it?
Best, Sander sanderrossel.com Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Frack, no.
-
How often have you ported it?
Best, Sander sanderrossel.com Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly
I've got both Windows and Kubuntu running here; not using the database-servers dailect of SQL makes it easy to switch databases.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
-
Too busy with community engineering on CodeProject nowadays :-\
You mean rolling your own and posting an article about it? :)
Wrong is evil and must be defeated. - Jeff Ello
-
You mean rolling your own and posting an article about it? :)
Wrong is evil and must be defeated. - Jeff Ello
Quote:
A nod's as good as a wink to a blind bat.
:-\
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Daily, yes. You just have to be very careful with how you write the queries and constantly inspect what Linq-to-SQL projects into actual SQL. Sometimes Linq is so clever that it project terrible and slow queries but in most cases you can fix it by "rewording" your Linq queries. I believe Entity Framework has the same projection problem.
My plan is to live forever ... so far so good
-
How many of you are using Linq-To-SQL? Just a quick poll
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Entity Framework Core for me. I like how it does migrations, and if done right, it can be portable across multiple database engines.