EntityFramework生成的类

时间:2011-11-05 22:30:11

标签: wcf entity-framework-4.1 data-annotations

我有一个使用DataBase First方法生成的EF模型。在设计器上,我使用DBContext对象创建了“代码生成项”。这创建了一个模板,为我的表生成POCO类(我想要的)。

我一直在使用这些相同的类来编写WCF和DataAnnotation属性,这些属性运行良好。我保存了这个文件的副本,如果模型重新生成,我只需将旧代码粘贴到新创建的模型生成的类中,并更新任何新属性。

我试着更进一步。每当我更改模型时,类都会重新生成并且属性会丢失。我试图做的是在我的项目中创建一个单独的文件夹,使用相同的类名称限定命名空间。我基本上会将生成的POCO类中已更改的任何属性复制到我创建的新文件夹中的另一个类,并简单地添加我需要的任何属性。但是,这几乎与上面第二段中的内容完全相同。但是,如果存在大型数据库模型,则可能会变得乏味且容易出错。

我想要做的是以某种方式模拟生成模型而不会丢失属性。是的,我知道 - 吃蛋糕也吃了......

有什么想法吗?

我尝试添加好友类,但这不起作用。

数据很好,但是在我下面添加好友类之后, DataAnnotations不起作用。

我想也许我需要更改我的服务方法以包含 Customer_Validation 对象而不是客户,并为客户端执行相同操作。

我即将进行此更改,但在我的服务方法中遇到以下代码段的障碍(这甚至在我更改了DbContext的定义后,这当然是另一个代码生成的类。) p.CustomerID上存在设计时编译错误。它不存在。

IQueryable<**Customer_Validation**> customer = DbContext.Customers.Where(p => **p.CustomerID** > 0);


 public DbSet<**Customer_Validation**> Customers { get; set; }

为了让DataAnnotations工作,我缺少什么?非常感谢您的帮助:)

我的客户课程有以下内容。

using System;
using System.Collections.Generic;
using System.ServiceModel;
using System.Runtime.Serialization;
using System.ComponentModel.DataAnnotations;
using DataAnnotationsExtensions;

namespace YeagerTechModel
{
    [MetadataType(typeof(Customer_Validation))]
    public partial class Customer
    {

    }

    public partial class Customer_Validation
    {
        [Serializable]
        [DataContract(IsReference = true)]
        public class Customer1
        {
            public Customer1()
            {
                this.Projects = new HashSet<Project>();
            }

            [DataMember]
            public short CustomerID { get; set; }

            [DataMember]
            [Required]
            [StringLength(50)]
            [DataType(DataType.EmailAddress)]
            [Email]
            public string Email { get; set; }

            [DataMember]
            [StringLength(50, MinimumLength = 3, ErrorMessage = "Must have a minimum length of 3.")]
            [DataType(DataType.Text)]
            public string Company { get; set; }

            [DataMember]
            [StringLength(50, MinimumLength = 3, ErrorMessage = "Must have a minimum length of 3.")]
            [DataType(DataType.Text)]
            public string FirstName { get; set; }

            [DataMember]
            [StringLength(50, MinimumLength = 3, ErrorMessage = "Must have a minimum length of 3.")]
            [DataType(DataType.Text)]
            public string LastName { get; set; }

            [DataMember]
            [StringLength(50, MinimumLength = 3, ErrorMessage = "Must have a minimum length of 3.")]
            [DataType(DataType.Text)]
            public string Address1 { get; set; }

            [DataMember]
            [StringLength(50)]
            [DataType(DataType.Text)]
            public string Address2 { get; set; }

            [DataMember]
            [StringLength(50, MinimumLength = 3, ErrorMessage = "Must have a minimum length of 3.")]
            [DataType(DataType.Text)]
            public string City { get; set; }

            [DataMember]
            [StringLength(2, MinimumLength = 2, ErrorMessage = "Must have a length of 2.")]
            [DataType(DataType.Text)]
            public string State { get; set; }

            [DataMember]
            [StringLength(10)]
            [DataType(DataType.Text)]
            [RegularExpression(@"^\d{5}(-\d{4})?$", ErrorMessage = "Invalid Zip")]
            public string Zip { get; set; }

            [DataMember]
            [StringLength(12)]
            [DataType(DataType.PhoneNumber)]
            [RegularExpression(@"^\s*([\(]?)\[?\s*\d{3}\s*\]?[\)]?\s*[\-]?[\.]?\s*\d{3}\s*[\-]?[\.]?\s*\d{4}$", ErrorMessage = "Invalid Phone")]
            public string HomePhone { get; set; }

            [DataMember]
            [StringLength(12)]
            [DataType(DataType.PhoneNumber)]
            [RegularExpression(@"^\s*([\(]?)\[?\s*\d{3}\s*\]?[\)]?\s*[\-]?[\.]?\s*\d{3}\s*[\-]?[\.]?\s*\d{4}$", ErrorMessage = "Invalid Phone")]
            public string CellPhone { get; set; }

            [DataMember]
            [StringLength(100)]
            [DataType(DataType.Url)]
            [Url]
            public string Website { get; set; }

            [DataMember]
            [StringLength(50)]
            [DataType(DataType.EmailAddress)]
            [Email]
            public string IMAddress { get; set; }

            [DataMember]
            public System.DateTime CreatedDate { get; set; }

            [DataMember]
            public Nullable<System.DateTime> UpdatedDate { get; set; }

            [DataMember]
            public virtual ICollection<Project> Projects { get; set; }
        }
    }
}

我的网络服务方法如下:

public IEnumerable<Customer> GetCustomers()
        {
            YeagerTechEntities DbContext = new YeagerTechEntities();

            DbContext.Configuration.ProxyCreationEnabled = false;

            IQueryable<Customer> customer = DbContext.Customers.Where(p => p.CustomerID > 0);

            CloseConnection(DbContext);

            return customer;
        }

我的客户端方法使用以下内容调用上述服务方法:

IEnumerable<YeagerTechModel.Customer> customerList = db.GetCustomers();

                    return View(new GridModel<YeagerTechModel.Customer>
                    {
                        Data = customerList
                    });

我的观点如下:

@model Telerik.Web.Mvc.GridModel<YeagerTechModel.Customer>
@{
    ViewBag.Title = "Customer Index";
}
<h2>
    Customer Index</h2>
@(  Html.Telerik().Grid<YeagerTechModel.Customer>(Model.Data)
      .Name("Customers")
            .DataKeys(dataKeys => dataKeys.Add(o => o.CustomerID)
                                            .RouteKey("CustomerID"))
                .ToolBar(commands => commands.Insert().ButtonType(GridButtonType.Text).ImageHtmlAttributes(new { style = "margin-left:0" }))
      .Columns(columns =>
            {
                columns.Bound(o => o.CustomerID).Hidden(true);
                columns.Command(commands =>
                {
                    commands.Edit().ButtonType(GridButtonType.Text);
                }).Width(200).Title("Command");
                columns.Bound(o => o.Email).Width(200).Filterable(false);
                columns.Bound(o => o.Company).Width(200).Filterable(false);
                columns.Bound(o => o.FirstName).Width(100).Title("FName").Filterable(false);
                columns.Bound(o => o.LastName).Width(100).Title("LName").Filterable(false);
                columns.Bound(o => o.Address1).Width(200).Title("Addr1").Filterable(false).Sortable(false);
                columns.Bound(o => o.Address2).Width(100).Title("Addr2").Filterable(false).Sortable(false);
                columns.Bound(o => o.City).Width(100);
                columns.Bound(o => o.State).Width(40).Title("ST");
                columns.Bound(o => o.Zip).Width(60);
                columns.Bound(o => o.HomePhone).Width(120).Filterable(false).Sortable(false);
                columns.Bound(o => o.CellPhone).Width(120).Filterable(false).Sortable(false);
                columns.Bound(o => o.Website).Width(100).Filterable(false).Sortable(false);
                columns.Bound(o => o.IMAddress).Width(100).Filterable(false).Sortable(false);
                columns.Bound(o => o.CreatedDate).Format("{0:MM/dd/yyyy}").ReadOnly(true).Width(120).Filterable(false).Sortable(false);
                columns.Bound(o => o.UpdatedDate).Format("{0:MM/dd/yyyy}").ReadOnly(true).Width(120).Filterable(false).Sortable(false);
            }).DataBinding(dataBinding =>
                dataBinding.Ajax()
                        .Insert("_InsertAjaxEditing", "Customer")
                        .Update("_SaveAjaxEditing", "Customer"))
    .Editable(editing => editing.Mode(GridEditMode.InLine))
    .Pageable()
    .Sortable()
    .Filterable()
    .Scrollable()
 )

1 个答案:

答案 0 :(得分:0)

您可以修改T4模板,以便在生成类时包含属性。

您也可以考虑使用数据传输对象并注释它们而不是实体。我目前正在使用EF 4.1(db first)和WCF进行项目,我使用AutoMapper在我的DTO和实体之间进行映射。我的服务api获取并返回DTO,然后将DTO映射到存储库中的实体。当我不希望它看起来与存储在数据库中时完全一样时,这允许我对服务公开的数据进行整形。

有关使用DTO的利弊的更多讨论,请参阅此MSDN article