-
Notifications
You must be signed in to change notification settings - Fork 60
Cannot Drag and Drop Onto Designer #132
Comments
Same as #128 |
I think we have this fixed in the next version, but could both of you post a class that currently doesn't parse so I can have them for test data? I really want to be sure this thing is resolved. 😁 |
Here you go: // This file has been auto generated by EF Core Power Tools. namespace DataLayer.Models
} |
Here you go, nothing fancy.
Sir Bobcat
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
From: Michael Sawczyn<mailto:notifications@github.com>
Sent: Sunday, December 8, 2019 5:38 PM
To: msawczyn/EFDesigner<mailto:EFDesigner@noreply.github.com>
Cc: SirBobcat<mailto:sirbobcat@outlook.com>; Comment<mailto:comment@noreply.github.com>
Subject: Re: [msawczyn/EFDesigner] Cannot Drag and Drop Onto Designer (#132)
I think we have this fixed in the next version, but could both of you post a class that currently doesn't parse so I can have them for test data? I really want to be sure this thing is resolved. 😁
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fmsawczyn%2FEFDesigner%2Fissues%2F132%3Femail_source%3Dnotifications%26email_token%3DAEZSWOFZ2PBX2B2OGN7FTMLQXVZNHA5CNFSM4JXBWBYKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEGHMEVA%23issuecomment-563003988&data=02%7C01%7C%7C8dd9b8970d4942c9be0108d77c2f4f05%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637114414935116801&sdata=17nnWYMWwZ5rdouuizx479LfhM1VEkDTMX4doJYCNQ4%3D&reserved=0>, or unsubscribe<https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAEZSWOBIUIO45XNHXQWKP5LQXVZNHANCNFSM4JXBWBYA&data=02%7C01%7C%7C8dd9b8970d4942c9be0108d77c2f4f05%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637114414935126806&sdata=h4QG7EqOIRwj75vme6v4HIHS1awAw275H5KZRurgME4%3D&reserved=0>.
using System;
using System.Collections.Generic;
namespace SixBitDB.Models
{
public partial class Addresses
{
public Addresses()
{
OriginTemplates = new HashSet<OriginTemplates>();
Shipments = new HashSet<Shipments>();
}
public int AddressId { get; set; }
public string FirstName { get; set; }
public string Initial { get; set; }
public string LastName { get; set; }
public string Company { get; set; }
public string AddressLine1 { get; set; }
public string AddressLine2 { get; set; }
public string AddressLine3 { get; set; }
public string City { get; set; }
public string State { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
public string Phone { get; set; }
public string EBayAddressId { get; set; }
public bool Overwrite { get; set; }
public int BuyerId { get; set; }
public int SupplierId { get; set; }
public string CountryId { get; set; }
public string StateId { get; set; }
public string CityId { get; set; }
public string MercadoAddressId { get; set; }
public string ReferenceId { get; set; }
public virtual ICollection<OriginTemplates> OriginTemplates { get; set; }
public virtual ICollection<Shipments> Shipments { get; set; }
}
}
|
I'm using Entity Framework v 2.2.6 and Entity Framework Visual Editor v 1.3.0.11 on a NET Standard 2.0 application. I really, really, really would love to use your tools because I can't find another visual editor for EF. I'm using :
Microsoft Visual Studio Community 2019
Version 16.4.0
When I try to drag my classes on to the designer, I get the following error:
Error interpreting (my model name)
Please help!!!
The text was updated successfully, but these errors were encountered: