实体框架模型独特的功能
我正在实体框架模型中工作,正在编写如下表达式:
medication = objectContext.vClientMedicate.Distinct().ToList(); 我应该在 Distinct
函数中编写什么来获取唯一的 BrandName
。 BrandName
是 vClientMedicate 的一个属性。
谢谢。
I am working in Entity Framework Model and i am writing an expression like this:
medication = objectContext.vClientMedication.Distinct().ToList();
What should I write in Distinct
function to get the unique BrandName
. BrandName
is an attribute of vClientMedication.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 IComparer
然后编写您的查询
you can use IComparer
then write your query