学习LINQ TO SQL时,经常会遇到LINQ TO SQL操作问题,这里将介绍LINQ TO SQL操作问题的解决方法
LINQ TO SQL很好很强大,它几乎包含了我们能够想到的所有与数据库有关的LINQ TO SQL操作,甚至也包含了一些我们可能都没有想到的。
但不管怎样,也许我们需要在LINQ TO SQL操作中添加一个自定义业务逻辑,例如在插入某个实体的时候编写日志等等。如何实现这样的功能呢?
其实这一点,LINQ TO SQL在设计的时候也考虑到了。我们可以打开那个dtml文件的designer.cs文件,我们发现有些隐藏的代码
假设我们需要在InsertCustomer的时候添加一些业务逻辑,那么该怎么做呢?
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Model
- {
- public partial class NorthwindDataContext
- {
- partial void InsertCustomer(Customer instance)
- {
- //这里可以实现自己的保存逻辑,根据传入的一个Customer的实例
- this.ExecuteCommand("Insert Into.....");
- //还可以写日志,等等
- }
- }
- }
一旦我们这样做了,那么插入Customer的逻辑就全部由我们来负责了。你需要确保这里面的代码是完整的
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Model
- {
- public partial class NorthwindDataContext
- {
- partial void InsertCustomer(Customer instance)
- {
- //这里可以实现自己的保存逻辑,根据传入的一个Customer的实例
- this.ExecuteCommand("Insert Into.....");
- //还可以写日志,等等
- }
- }
- }
【编辑推荐】