English 中文(简体)
如何为林克2SQL物体创造习俗和制定方法
原标题:How to create custom get and set methods for Linq2SQL object

我有一些物体自动由林克2SQL制造。

我想写一些法典,只要对这些物体的特性进行解读或改变,就应当加以操作。

我能否在我的部分类别档案中使用典型编号{/编码}和{/编码}来补充这一功能? 目前,我对该成员的界定有误。

这一切都是有意义的。

如果我不能重新界定这种财产的获得和确定方法,那么,我就必须制定一种作为这一功能切入点的职能的方法,这是正确的。

我只想更新一下,并定下来,因为这意味着我不得不改变我所有的参照点。 但我认为,我可能不得不在任何地方加以更新。

最佳回答

你们不敢理解,但可以跟踪你们物体的变化。 E.g. <代码> PropertyChangedEventHandler on auto produced entities.

因此,你要做的是划出一个部分类别(代号为:/code>:

public partial class Person
{
    public Person()
    {
        this.PropertyChanged += 
           new PropertyChangedEventHandler(Person_PropertyChanged);
    }

    protected void Person_PropertyChanged(object sender, PropertyChangedEventArgs e)
    {
        // your code here
    }
}
问题回答

我在想做些什么是使财产成为私有/不可利用的(因为可以在没有编辑产生的法典的情况下作为DBML定义的一部分进行),并给它一个不同于我想要揭露的财产的名称。 然后,我用我想要暴露的名字,用一部分人种来实施公共包装财产。 然后(如果你真的希望的话)实施准则提供者,可将提及包装物的查询转换为提及基本特性的查询。 我已经做了这一切,而且工作做得很好,但按惯例,LINQ的提供者却trick。

除非你修改所形成的法典,然后在编造者中添加新的法典(例如使用世界森林基金中的模式,同时保留所有权),否则就不可能这样做。





相关问题
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. ...

热门标签