0

私は .Net 開発に不慣れで、データベースを更新するための WCF Web サービスを使用して、3 層の C# Web アプリケーション (おそらくフロント エンドの MVC) を作成したいと考えています。この種類のアプリケーション用の Visual Studio Express 2012 テンプレート プロジェクトはありますか? 非常に一般的なアーキテクチャのように思われるので、テンプレートやサンプルが見つからないことに驚いていますが、その一部を実行するサンプルはいくつか見つかりました。私は新しく、何を検索すればよいか正確にわからないので、私の努力を促進する何かを見落としていないことを確認したいだけです.

前もって感謝します!

4

1 に答える 1

0

You need to create your solution to have two project to make this work. There isn't a default project that is automatically hooked up for this scenario. First you would want to select a new project >> ASP.NET MVC X Application. Once the project is created you can right click on the solution and and a new project. Add a new WCF service application. This way you have two projects in your solution. One for the front end and one for the middle tier. You can use the entity framework alongside your middle tier project to create an easy to use data model.

于 2013-04-13T16:21:48.007 に答える