VJOY
VJOY

Reputation: 3792

What is the basic difference between mapping file generated by SQLMETAL and EDMGenerator?

I am making use of sqlmetal tool to generate mapping file for my entities. Recently I came across the EDMGen tool, which also generates the same mapping file.

What is the difference between these 2 ?

Upvotes: 1

Views: 174

Answers (1)

Pranay Rana
Pranay Rana

Reputation: 176886

Sql metal generated file is used in Linq to SQL (ORM)

where

EDMGen tool generated file is used in EntityFramework (ORM).

Upvotes: 2

Related Questions