Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Entity Framework 4.3.1のsql-viewを使用してデータをロードすることは可能ですか?コードファーストの使用
はい、ビューが既に定義されている既存のデータベースを操作する場合は、単に EF をごまかし、[Table("my_View")]エンティティ クラスの注釈または.ToTable("my_View")流暢なマッピングのメソッドを使用して、ビューが実際にはテーブルであると想定させることができます。
[Table("my_View")]
.ToTable("my_View")