c# – 如何在linq-to-sql中返回匿名类型

前端之家收集整理的这篇文章主要介绍了c# – 如何在linq-to-sql中返回匿名类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下伪代码,但想法是返回一个泛型类
public static var getSeaOf(string user)
        {
            var periodsSettings = from p in sea
                                  where p.add_by == new Guid(user)
                                  select new { p.id,p.name };

            return var;
        }

我在这里阅读 – How to return anonymous type from c# method that uses LINQ to SQL,这种情况的最佳解决方案是为返回类型创建一个类.

但我的问题是,如果我有数百个这样的函数,这是否意味着我需要有数百个类?

我希望有一个更通用的解决方案,谢谢你的帮助!!

我来看看

Silverlight – LinqToEntities – How Do I Return Anonymous Types

但我不能在select new中指定类名,就像文章一样?

public static IEnumerable<retSea> getBskSeasonsOf(string user)
        {
            var periodsSettings = from p in sea
                                  where p.add_by == new Guid(user)
                                  select new retSea { p.id,p.name };

            return periodsSettings;
        }

解决方法

这是一篇关于使用VS 2010的Generate From Usage功能在.NET中命名匿名类型的博客文章.

http://diditwith.net/2009/10/24/NamingAnonymousTypesWithGenerateFromUsage.aspx

原文链接:https://www.f2er.com/csharp/244794.html

猜你在找的C#相关文章