随笔分类 -  Entity Framework 6

摘要:The default Way to handle concurrency of Entity Framework is using optimistic concurrency . When two clinets update the same entity, one of theirs dat 阅读全文
posted @ 2017-05-27 09:04 会长 阅读(196) 评论(0) 推荐(0) 编辑
摘要:Joins allow developers to combine data from multiple tables into a sigle query. Let's have a look at codes: Creating a project 1. Create a project nam 阅读全文
posted @ 2017-05-24 08:59 会长 阅读(114) 评论(0) 推荐(0) 编辑
摘要:Complex types are classes that map to a subset of columns of a table.They don't contains key. They are the Value Objects . For example, you have a ent 阅读全文
posted @ 2017-05-16 09:05 会长 阅读(427) 评论(2) 推荐(0) 编辑
摘要:Sometimes, you need to find some data in an existing context instead of the database. By befault, Entity Framework always find data in database. If yo 阅读全文
posted @ 2017-05-15 09:16 会长 阅读(181) 评论(2) 推荐(1) 编辑
摘要:Creating Entities First of all, Let's create some entities to have a test. 1. Create a project 2. Add following packages by NuGet EntityFramework MySq 阅读全文
posted @ 2017-05-14 18:40 会长 阅读(240) 评论(0) 推荐(0) 编辑
摘要:There are three types of relationships in database. They are: One to Many One to One Many to Many The One to Many relationship Write some codes first: 阅读全文
posted @ 2017-05-11 09:05 会长 阅读(217) 评论(4) 推荐(1) 编辑
摘要:There are three ways to define the database structure by Entity Framework API. They are: Attributes The DbModelBuilder API Configuration Classes Attri 阅读全文
posted @ 2017-05-09 09:07 会长 阅读(209) 评论(0) 推荐(1) 编辑
摘要:Sometimes, you have created two models. They have the same parent class like this: public class Person { public int PersonId { get; set; } public stri 阅读全文
posted @ 2017-05-05 09:18 会长 阅读(258) 评论(8) 推荐(1) 编辑
摘要:Sometimes, you've created a table for example named Person . Just then, you want to add some extra information, but don't want to add any new field in 阅读全文
posted @ 2017-05-04 08:45 会长 阅读(257) 评论(0) 推荐(0) 编辑
摘要:Sometimes, We want to check the original sql statements. creating a commandInterceptor is a good way to do this. Add a class named MyCommandIntercepto 阅读全文
posted @ 2017-05-01 22:33 会长 阅读(188) 评论(0) 推荐(1) 编辑
摘要:一个使用mysql的entity framework的例子 阅读全文
posted @ 2017-04-30 18:03 会长 阅读(291) 评论(0) 推荐(1) 编辑