6

VS2010でEntityFramewok4.0POCOとWCFサービスを使用してDotNetプロジェクトに取り組んでいます。パフォーマンスの向上とテーブル値関数のサポートのため、Ef5.0とVS2012に切り替えます。

しかし、私はたくさん検索しましたが、VS2012およびEF5.xで使用するDataContractおよびDataMember属性をサポートするpocoジェネレーターテンプレートまたはDBcontextジェネレーターテンプレートは見つかりませんでした。

[DataContract(IsReference = true)]
[KnownType(typeof(Transactions))]
public partial class Accounts 
  {
    [DataMember]
    public int AccountID { get; set; }

    [DataMember]
    public string AccountCode { get; set; }
  }

そして私の質問は:

1- VS2012で機能するようなテンプレートを持っている人はいますか?

2-WCFに必要な属性をサポートするようにテンプレートをカスタマイズするためにEF5.xDBContextジェネレーターで必要な変更を知っている人はいますか。

私にはほとんど時間がなく、本当に助けが必要です。

助けやガイダンスをありがとう。

4

2 に答える 2

0

you could simply add the needed attributes in a partial class implementation in another code file. Otherwise, you'll need to edit the .tt file. I suggest the former one usually does this anyway to use data annotations (i.e. MetadataTypeAttribute).

于 2013-03-26T21:49:35.523 に答える