.net 4 架构:MVC、WCF 数据服务、存储库模式、实体框架结合在一起?

发布于 2024-10-12 07:08:56 字数 950 浏览 4 评论 0原文

我有幸从头开始使用所有最新、最棒的 .net 4 位和 .net 4 位版本。鲍勃。我的应用程序必须支持不同的客户端,包括 MVC 网站、iphone 应用程序、andriod 应用程序和应用程序。其他网站

我的应用程序处理相当多的空间数据,并且需要依赖缓存,因为它公开地理 RSS 提要,以允许在 Bing Maps Ajax 7 上将区域渲染为多边形。

我知道我想使用上述所有技术,但是我还不能 100% 确定它们是如何组合在一起的。

遗憾的是 EF 4 不支持空间数据类型或 SqlDependecy 缓存失效。因此,对于我的一些数据访问,我决定依靠 ADO .net 2 SqlCommands/存储过程(我还认为预编译 SQL Spatial 函数并在 SQL Server 内部发生是值得的)。

因此,根据我目前的理解,我的想法如下:

1)我将有一个 .edmx,它可以对没有空间属性的类型进行数据访问。然后,我将为那些与 .edmx 对话并返回 POCO 对象的类型提供存储库(使用 EF4 Poco 模板)。

2) 我将拥有带有空间位类型的手写 ADO .net 2 代码的存储库。

3)我将拥有封装存储库的服务层类(手写)(不知道它们是如何实现的或它们正在谈论什么)。在这里我将实现安全和业务逻辑。

4) 我将在一个单独的应用程序中部署一个 WCF 数据服务 (.net 4),该应用程序将服务层公开为 OData 供不同客户端使用。

5) 我的 MVC 将通过控制器代码与我的 WCF 数据服务层通信。

6) 其他客户端将与 WCF 数据服务层对话并按照他们希望的方式处理 OData。

这有道理吗?使用 OData 来调用业务操作而不仅仅是 CRUD? Odata 的安全性和身份方面是否存在主要障碍和挑战者?

另外,它是否会太繁重,我是否应该寻找某种类型的混合动力以获得更好的性能和性能?更少的代码,比如直接与我的网络应用程序中的 (3) 对话并打破层蛋糕?

I have the luxury of starting from scratch with all the latest a greatest .net 4 bits & bobs. My app must support different clients including an MVC Website, iphone App, andriod App & other websites

My application processes quite a bit of spatial data and will need to rely on caching because it exposes geo RSS feeds to allow areas to be rendered as polygons on Bing Maps Ajax 7.

I know I want to use all the above technologies, BUT I'm not yet 100% sure how they all come together.

Sadly E.F. 4 doesn't support spatial data types OR SqlDependecy cache invalidation. SO for some of my data access I've decided to fall back on ADO .net 2 SqlCommands / Stored Procedures (I also think it's going to be worthwhile having SQL Spatial functions pre-compiled and occurring inside of SQL Server).

Hence from my current understanding, here is what I'm thinking:

1) I'll have an .edmx which does Data Access for types with no spatial properties. I will then have Repositories for those types which talk the the .edmx and return POCO objects (using the EF4 Poco Templates).

2) I'll have repositories with hand written ADO .net 2 code for the types with spatial bits.

3) I'll have Service Layer classes (hand written) that encapsulate the repositories (not know how they're implemented or what they are talking to). Here I'll implement security and business logic.

4) I'll have a WCF Data Service (.net 4) deployed in a separate application that exposes the Service layer as OData for the different clients to consume.

5) My MVC as will talk to my WCF Data Service layer from controller code.

6) Other clients will talk to the WCF Data Service layer and deal with the OData they way they wish.

Does that make sense? Using OData for invoking business operations instead of just CRUD? Are there major road blocks and challengers with security and identity over Odata?

Also is it going to be too onerous and should I be looking for some type of hybrid for better performance & less code, like talking directly with (3) from my web app and breaking the layer cake?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

來不及說愛妳 2024-10-19 07:08:56

这里有严厉的爱。

如果您不了解想要使用的技术,请不要对您的应用程序进行 BFUD(大型预先设计)。你这样做弊大于利。使用最流行的模式!=成功。

从小处开始,长出一些小碎片,然后从那里开始成长。

Tough love here.

Don't BFUD ( big up front design ) your application if you don't understand the technologies you want to work with. You'll do more harm than good. Using the most popular patterns != success.

Start small, spike out some tiny pieces and grow from there.

北方的韩爷 2024-10-19 07:08:56

同意下面的观点,听起来系统架构中有相当多的未知数 - 尽可能保持简单 - 拥有 2 个独立的 DAL(ODATA 和您的自定义 DAL)是代码可维护性地狱的秘诀。 -您可能想跳过 odata 部分。

如果您的客户端需要与 ODATA 服务 REST 数据同时访问空间数据类型,那么您的第 2 部分和第 3 部分、第 6 部分似乎有点不确定。不知道如何解决这个问题,

我会说 ODATA 可以很容易地被 .NET 客户端应用程序访问,并且支持通过 Javascript、Java 进行客户端访问(请参阅RESTLET) - 从我有限的 .NET 经验来看,这非常棒服务和 .NET 客户端 - 尚未在非 .NET 客户端上使用它,

祝你好运..我想知道这一切结果如何。

Agree with below that sounds like a fair amount of unknowns in the architecting of your system -keep it simple as much as possible - having 2 separate DALs (ODATA and your custom one) is a recipe for code maintainability hell. -you may want to skip the odata part.

your Parts 2&3, 6 seems a bit iffy if your clients need access to the spatial data types concurrently with the ODATA service REST data. not sure how you can solve that

I will say that ODATA can be accessed by .NET client apps very easily, and there is support for client access via Javascript, Java (see RESTLET) -its great from my limited experience with it for .NET service and .NET clients -haven't used it yet on non .NET clients

Good Luck.. I'd like to know how this all turns out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文