ALinq 使用教程(五)使用 Xml 映射文件
2011-05-05 11:16 麦舒 阅读(851) 评论(0) 编辑 收藏 举报创建 Xml 映射文件
点击设计器,在 External Mapping 属性设为 True,然后按保存生成代码,在 Northwind.admf 项目下面,你会发现新生成了一个 Northwind.designer.map 文件。
使用 Xml 映射文件
在使用下面的代码时,请记得修改 filePath 变量。
代码
static void Main(string[] args)
{
var filePath = @"D:\Temp\ConsoleApplication1\ConsoleApplication1\Northwind.designer.map";
var mappingSource = ALinq.Mapping.XmlMappingSource.FromUrl(filePath);
var dc = new NorthwindDataContext(mappingSource)
{
Log = Console.Out
};
var product = dc.Products.ToList();
}
{
var filePath = @"D:\Temp\ConsoleApplication1\ConsoleApplication1\Northwind.designer.map";
var mappingSource = ALinq.Mapping.XmlMappingSource.FromUrl(filePath);
var dc = new NorthwindDataContext(mappingSource)
{
Log = Console.Out
};
var product = dc.Products.ToList();
}
更多关于 Xml 映谢的内容,请参考:
http://msdn.microsoft.com/en-us/library/bb386907.aspx
或者 Google: Linq to SQL Xml Mapping 获得更多资讯。