如何将C#中的Dynamic转换为vb? [英] how to convert Dynamic in C# to vb?

查看:158
本文介绍了如何将C#中的Dynamic转换为vb?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

public dynamic GetPosts()
       {

           var ret = (from post in db.Posts.ToList()
                     orderby post.PostedDate descending
                     select new
                     {
                         Message = post.Message,
                         PostedBy = post.PostedBy,
                         PostedByName = post.UserProfile.UserName,
                         PostedByAvatar =imgFolder +(String.IsNullOrEmpty(post.UserProfile.AvatarExt) ? defaultAvatar : post.PostedBy + "." + post.UserProfile.AvatarExt),
                         PostedDate = post.PostedDate,
                         PostId = post.PostId,
                         PostComments = from comment in post.PostComments.ToList()
                                        orderby comment.CommentedDate
                                        select new
                                        {
                                            CommentedBy = comment.CommentedBy,
                                            CommentedByName = comment.UserProfile.UserName,
                                            CommentedByAvatar = imgFolder +(String.IsNullOrEmpty(comment.UserProfile.AvatarExt) ? defaultAvatar :  comment.CommentedBy + "." + comment.UserProfile.AvatarExt),
                                            CommentedDate = comment.CommentedDate,
                                            CommentId = comment.CommentId,
                                            Message = comment.Message,
                                            PostId = comment.PostId

                                        }
                     }).AsEnumerable();
           return ret;
       }



我坚持使用动态类型不知道如何将其转换为vb

这是我的VB代码:


I stuck with the dynamic type don't know how to convert it into vb
Here is my VB Code:

Public Function GetPosts() As IEnumerable(Of Post)



        Dim ret = (From post In db.Posts.ToList() Order By post.PostedDate Descending Select New With { _
                Key .Message = post.Message, _
                Key .PostedBy = post.PostedBy, _
                Key .PostedByName = post.UserProfile.UserName, _
                Key .PostedByAvatar = imgFolder & Convert.ToString((If([String].IsNullOrEmpty(post.UserProfile.AvatarExt), defaultAvatar, post.PostedBy + "." + post.UserProfile.AvatarExt))), _
                Key .PostedDate = post.PostedDate, _
                Key .PostId = post.PostId, _
                Key .PostComments = From comment In post.PostComments.ToList() Order By comment.CommentedDate Select New With { _
                    Key .CommentedBy = comment.CommentedBy, _
                    Key .CommentedByName = comment.UserProfile.UserName, _
                    Key .CommentedByAvatar = imgFolder & Convert.ToString((If([String].IsNullOrEmpty(comment.UserProfile.AvatarExt), defaultAvatar, comment.CommentedBy + "." + comment.UserProfile.AvatarExt))), _
                    Key .CommentedDate = comment.CommentedDate, _
                    Key .CommentId = comment.CommentId, _
                    Key .Message = comment.Message, _
                    Key .PostId = comment.PostId _
                } _
            }).AsEnumerable()
        Return ret

    End Function

推荐答案

您可以进行自动翻译。首先,考虑使用开源ILSpy。请看我过去的答案:

代码解释,C#到VB.NET [ ^ ]。



-SA
You can do automatic translation. First of all, consider using open-source ILSpy. Please see my past answer:
Code Interpretation, C# to VB.NET[^].

—SA


这篇关于如何将C#中的Dynamic转换为vb?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆