Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

All Tags » Samples   (RSS)
Tip 3 - How to get started with T4
So if you've been reading the Entity Framework Design Blog you will have heard us talk about T4 . It is a technology that ships with Visual Studio 2008 (and 2005 as a separate download). In .NET 4.0 the Entity Framework is leverage T4 to help with Code Read More...
LINQ to Objects and Buffer<T>
I was debugging a problem a couple of days ago, when I learned something interesting. I had some code that looked like this: foreach(Employee e in manager.Manages) { … } The manager.Manages property returned a custom implementation of ICollection<Employee> Read More...
SaveChanges(false)
Most of the time the Entity Framework (EF) can manage transactions for you. Every time you Add an Entity, Delete an Entity, Change an Entity, Create a Relationship or Delete a Relationship in your .NET code, these changes are remembered by the EF, and Read More...
Blogging database scripts
For a while now I've been using a blogging database for demos, presentations, videos etc. For example I used my little blogging database for the Getting Started with the Entity Framework video I did. Every time I do something with this database I invariably Read More...
Sample Oracle Provider for EF
Jarek has released his sample provider for Oracle here . In his post he talks about a few of the more notable challenges he had and how he got around them. If you are writing an EF provider this is gold! Read More...
Page view tracker