Upcoming ADO.NET stories

Linq to Asp.net controls(ianswerable.com)

submitted by govindmalviyagovindmalviya(14) 7 days, 22 hours ago

Query on controls of page through linq read more...

add a comment |category: |Views: 8

tags: another

Custom Paging using: EntityFramework 4.1, ObjectDataSource, and ListVi(www.keivansadra.com)

submitted by techiemaetechiemae(55) 9 days, 19 hours ago

What is custom paging? Say if you have a 1,000 records inside of a database, and you want to display 10 records at a time. Conventional paging would require you to fetch all and have your website or web application handle the paging. As we all know, this can get pretty expensive with the records travelling from the database to your website or web application. read more...

add a comment |category: |Views: 4

tags: another

Database-first development pattern using Entity Framework 4.1 and SQL (www.keivansadra.com)

submitted by techiemaetechiemae(55) 12 days, 10 hours ago

Modern-day development is becoming increasingly easy. In this article, we will walk you through creating a data-driven website by using some of the newest tools provided by Microsoft ®. You will see just how easy this can be. We will be creating a three tier application that will display a list of users using Microsoft's new ListView control. read more...

add a comment |category: |Views: 15

tags: another

Execute TSQL statement with ExecuteStoreQuery in entity framework 4.0(www.dotnetjalps.com)

submitted by jalpeshjalpesh(1327) 1 month, 14 days ago

I was playing with entity framework in recent days and I was searching something that how we can execute TSQL statement in entity framework. And I have found one great way to do that with entity framework ‘ExecuteStoreQuery’ method. It’s executes a TSQL statement against data source given enity framework context and returns strongly typed result. read more...

add a comment |category: |Views: 15

tags: another

Bulk Insert in .NET applications, part 1(wp.me)

submitted by ruijarimbaruijarimba(81) 1 month, 25 days ago

This is the first of a 2 series articles about how to perform bulk inserts in your .NET applications, using a SQL Server database. In this article I’ll show how to create a wrapper object for SqlBulkCopy that can do a bulk insert for a collection of objects. In the second article I’ll show how that wrapper can be easily integrated with Entity Framework (creating extension methods for DbContext and ObjectContext). read more...

add a comment |category: |Views: 4

tags: another

Do you want a simple type mapping / conversions in Entity Framework?(www.ladislavmrnka.com)

submitted by LadislavMrnkaLadislavMrnka(65) 2 months, 16 days ago

The article describes a highly missing feature in Entity Framework - a simple type mapping or conversions and links related feature suggestion from Data UserVoice. read more...

add a comment |category: |Views: 4

tags: another

Entity Framework 4.3 migration and an existing database(www.ladislavmrnka.com)

submitted by LadislavMrnkaLadislavMrnka(65) 2 months, 19 days ago

The article describes how to add code first migrations to an application with an existing database and how to use a new feature in EF 4.3.1 when adding initial migration. read more...

add a comment |category: |Views: 28

tags: another

A DynamicData Attribute Based Permission Solution using User Roles(csharpbits.notaclue.net)

submitted by levihlevih(0) 2 months, 27 days ago

Dynamic Data Attribute Based Permission Solution using User Roles read more...

add a comment |category: |Views: 8

tags: another

Seed your database with test data using the entity framework(www.michaelwullink.com)

submitted by wullinkmwullinkm(33) 4 months, 2 days ago

In this post we fill focus on Data Initializers for EF Code First, this feature allows you to seed your database in development scenario’s with some standard test data. I’m assuming you’ll already have some experience using EF Code First read more...

add a comment |category: |Views: 16

tags: another

Entity Framework and T4: Generating GetHashCode() for your entities(wp.me)

submitted by ruijarimbaruijarimba(81) 5 months, 2 days ago

A simple Entity Framework T4 template that generates GetHashCode() method read more...

add a comment |category: |Views: 7

tags: another

Entity Framework 4.5 is coming in the next .NET 4.5 Developer preview(www.ladislavmrnka.com)

submitted by LadislavMrnkaLadislavMrnka(65) 6 months, 26 days ago

ADO.NET team announced releasing Entity framework features previewed in June 2011 CTP as part of .NET Framework 4.5. These features will be present in the next .NET Framework 4.5 Developer preview. read more...

add a comment |category: |Views: 13

tags: another

ADO.NET-Entity-Framework-What-How-Why(tutorialsaspnet.com)

submitted by mehta2626mehta2626(108) 8 months, 26 days ago

Channel 9 video about ADONET-Entity-Framework-What-How-Why read more...

add a comment |category: |Views: 5

tags: another

Creating a Many To Many Mapping Using Code First(blogs.microsoft.co.il)

submitted by gilfgilf(2139) 9 months, 20 days ago

Today I got a question about how to create a many to many mapping using Entity Framework Code First. The question was how to create the mapping with an existing database. Here is an explanation how to achieve that. read more...

add a comment |category: |Views: 9

tags: another

Composite key join in LINQ(www.dotnetlogix.com)

submitted by dotnetlogixdotnetlogix(524) 10 months, 8 days ago

In this article I will show how to use composite key join to perform join operation in which you want to use more than one key to define a match. read more...

add a comment |category: |Views: 5

tags: another

Malpais Hotels(www.malpaisbeach.com)

submitted by malpais123malpais123(0) 10 months, 15 days ago

Malpais and Santa Teresa, Costa Rica Travel Guide - Malpais Hotels, Rental houses and homes, real estate, and wedding guide. read more...

add a comment |category: |Views: 0

tags: another

CRUD Operation with ASP.NET MVC and EFCodeFirst Part-1(jalpesh.blogspot.com)

submitted by jalpeshjalpesh(1327) 10 months, 15 days ago

I have been playing with EFCodeFirst now and I found it very interesting with that you could write your application fast and easily. So I have decided to write series of blog posts for CRUD Operations using ASP.NET MVC 3 and EFCodeFirstCTP5.0 . You can very easily create CRUD within some minutes of code. So let’s start first thing is to create an ASP.NET MVC 3 application like following. Once you click OK. It will ask for the which type of View your are going to use. I have used Razor and HTML5 Semant... read more...

add a comment |category: |Views: 37

tags: another