具有GuID的实体框架

时间:2014-05-28 08:51:33

标签: asp.net entity-framework guid

我必须在我的数据库的一行中生成一个GuID。

我有这个代码: public partial class Nouveaucontact:System.Web.UI.Page     {

    protected void Page_Load(object sender, EventArgs e)
    {

    }
    private PROJECTEntities1 db = new PROJECTEntities1();

    protected void Button1_Click(object sender, EventArgs e)
    {
        string newGuid = System.Guid.NewGuid().ToString();

        Clients objAdd = new Clients
        {
            Numero_siret = TextBox_numero_siret.Text,
            Numero_telephone = TextBox_numero_telephone.Text,
            Adresse_mail = TextBox_adressemail.Text,
            Logiciel = DropDownList_choixlogiciel.SelectedValue,

        };

        db.Clients.Add(objAdd);
        db.SaveChanges();                                      
    }

我不知道要生成此唯一标识符。

0 个答案:

没有答案