VisualStudio2010とADO.NetEntityDataModelを使用してデータベーススキーマを作成しています。私はまだスキーマのドラフトと議論を行っているので、edmxファイルにサンプルデータを追加して、次のスクリーンショットのようにデザイナーに表示できるようにしたいと思います。
サンプルデータが追加されたEDMXファイルのソースコード
基になるxmlコードには、通常のedmx-outputが含まれ、その上に次のようなサンプルデータが含まれます。
<?xml version="1.0" encoding="utf-8"?>
....
<EntityType Name="Title">
<Documentation>
<Summary>Table titles contains all the dvd-title we have in our store</Summary>
</Documentation>
<Key>
<PropertyRef Name="Id" />
</Key>
<Property Type="Int32"
Name="Id" Nullable="false"
annotation:StoreGeneratedPattern="Identity" />
<Property Type="String" Name="Title" Nullable="false" >
<Documentation>
<Summary>The title of the movie</Summary>
<LongDescription>
The translated title of the movie and the original title
</LongDescription>
</Documentation>
</Property>
</EntityType>
<Titles>
<Title>
<id>810</id>
<title>Pulp Fiction</title>
<year>1994</year>
</Title>
<Title>
<id>940</id>
<title>Lock, Stock and Two Smoking Barrels</title>
<year>1998</year>
</Title>
</Titles>
サンプルデータが表示され、デザインビューで編集可能である必要があります。
edmxファイルを組み合わせてサンプルデータを表示および追加するためのツールまたは方法を知っている人はいますか?
ボーナス質問:SQLステートメントを生成すると、ドキュメントがSQLステートメントに追加されません。フィールドとテーブルのドキュメントを含めて、Microsoft SQL Serverに追加する方法はありますか?