从 edmx 复制并粘贴属性名称
假设我刚刚更新了模型并添加了一个包含 30 列的表格。
现在我需要创建一个具有这 30 个属性的商务类。
我不想使用任何创建此类的工具,但我只想能够从 edmx 文件复制属性名称。
有什么好的办法吗?复制并粘贴每个属性是非常困难的工作。
Assume I just updated my model and added a table with 30 columns.
Now I need to create a business class with this 30 properties.
I don't want to use any tools that created this class but I only want to be able to copy the names of the properties from the edmx file.
Is there any good way to do so? Copy and paste each property is very hard job to do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用其他编辑器打开 edmx 文件。为此,您可以右键单击 edmx 文件并使用 XML(文本)编辑器 打开它。然后,您必须找到描述您的属性的部分并复制它。例如:
如果您只需要属性的名称,则可以使用Alt+Shift+箭头键仅选择所需的数据,然后清除不需要的内容,因为某些属性名称将被比其他的更长,你会得到一些其他的符号。
希望这有帮助!
You can open the edmx file using another editor. To do this you can right click the edmx file and open it with XML (Text) Editor. Then you have to find the section where your properties are described and copy it. For example:
If you need just the names of the properties, you can select only the data you want using Alt+Shift+The Arrow Keys and then just clear the unneeded things, as some property names will be longer than others and you'll have some other symbols.
Hope this helps!