Despite my usual complaints about Microsoft, I really appreciate the direction they've been heading with their adoption of open source for a growing number of their products. ScottGu, Hanselman et al. really deserve a lot of credit for the big cultural changes they've caused to allow a lot of this.
Microsoft Open Sources their Entity Framework ORM
11–20 of 83 posts
Re: Microsoft Open Sources their Entity Framework ORM
#12Its hard for me to say this in some ways, but of the bigcos, I'm most bullish on Microsoft. I might actually go stand in line (if there are any) for the Surface tablet and maybe even a Windows Phone 8 device. They are (finally) making the right moves and doing it in a consistent and open way. Any Microsoft insiders know who is driving all this change? ScottGu? Steven Sinofsky?
Re: Microsoft Open Sources their Entity Framework ORM
#13Is Entity used a lot? We looked at using it but it seemed to be inferior to NHibernate (don't remember details, think there was a problem with type error detection and other stuff).
Re: Microsoft Open Sources their Entity Framework ORM
#14Earlier quoted context omitted.
I don't like it, and we don't use it at Fog Creek, but, yes, it's VERY heavily used on piles of projects I know. It's not as efficient or flexible as NHibernate, but it's far easier and vastly better integrated into Visual Studio, making it a bit of a no-brainer for simple persistence needs.
So, what do you guys use at Fog Creek. I've been discussing with my colleagues some of the micro-ORMs like Dapper, Massive, or PetaPoco as an alternative to EF. http://code.google.com/p/dapper-dot-net/ https://github.com/robconery/massive http://www.toptensoftware.com/petapoco/
Re: Microsoft Open Sources their Entity Framework ORM
#15Re: Microsoft Open Sources their Entity Framework ORM
#16Is Entity used a lot? We looked at using it but it seemed to be inferior to NHibernate (don't remember details, think there was a problem with type error detection and other stuff).
Re: Microsoft Open Sources their Entity Framework ORM
#17Interesting that they put this in a Git repo (instead of TFS), but only to then push it to CodePlex (instead of Github)
Re: Microsoft Open Sources their Entity Framework ORM
#18Re: Microsoft Open Sources their Entity Framework ORM
#19Earlier quoted context omitted.
So, what do you guys use at Fog Creek. I've been discussing with my colleagues some of the micro-ORMs like Dapper, Massive, or PetaPoco as an alternative to EF. http://code.google.com/p/dapper-dot-net/ https://github.com/robconery/massive http://www.toptensoftware.com/petapoco/
I don't know what they use at Fog Creek, but I will say that I've been building a lot of things lately in both Massive and PetaPoco, and I've really enjoyed it. I've done several projects in both Linq2SQL and EntityFramework at this point, and they both seem way too 'heavy.' Writing straight sql (or pretty much straight sql) has been a return to simplicity. it's forced me to make sure my queries are efficient, and on…
Re: Microsoft Open Sources their Entity Framework ORM
#20Interesting that they put this in a Git repo (instead of TFS), but only to then push it to CodePlex (instead of Github)
Considering Team Foundation Service, project Kudu/Git deploy on Azure etc. it makes sense to think that Microsoft are making a play to seriously take on GitHub and Atlassian, so that they're the one provider that owns an entire software ecosystem, end to end.
Either way, I don't think that the EF team would have had a choice on where to host it...