English 中文(简体)
与实体框架3.5和多国企业核查和核查机制挂钩的托存模式——我是否在任何地方都有同样的背景?
原标题:Repository Pattern with Entity Framework 3.5 and MVVM - Should I share the same context everywhere?

I am developing a Database File System. I am using -

  1. .Net framework 3.5
  2. Entity Framework 3.5
  3. WPF with MVVM pattern

该项目使用相同的模式跨越多个议会。

一个组别称其为“服务器”,只使用相同的电子格式对数据库增加数据。 其他集会(包括调查组)都读写数据。 服务器所作的改动应当立即反映在其他组件中。

该数据库载有每个实体可以有单亲或无父母或(可能)一些子女的自我参考表格。 我想利用储存模式,这种方式还可以提供某种机制来处理这种等级性质。

我已在Code Project上读过。 它与世界各地的情况相同。

我的问题是——我是否在任何地方都有同样的情况? 这样做有什么好处?

最佳回答
问题回答

根据我的理解,在需要时应当使用标语,然后抛弃。 因此,你可能希望把它总结为一个工作单位,同时建立一个工作单位。

就你关于反映“评估”各变化的实体的问题而言。 你们的物品没有在集会上生活。 它们存在于记忆中。

因此,为了反映整个申请中的变化,你要么必须在整个过程中始终提及同一目标。 或者,如果实体或实体的收集发生变化,则你可以实施通知制度,或执行通知制度的另一方,更新数据。

保持单一环境的不利之处在于,每当你对物体情况提出询问时,它就与装自散射线的实体一起成长。 从长远来看,这将转化为大量的记忆消耗。

每次使用一个品牌的新环境的倒数是,任何传票都给你一个数据的新版本。 现在,这不应成为一个问题,因为重新浮标的唯一关切应当是节省/储存数据;而不是处理各层的一致或数据重复。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签