开发者

SubSonic IQueryable To String Array

I have decided to use SubSonic (v3.0) for the first time and thoroughly enjoy it so far howe开发者_开发知识库ver I seem to have stumbled and I am hoping there is a nice neat solution.

I have a users, roles and joining table.

SubSonic (ActiveRecord) generated an entity User for my users table. A property of User is UserRoles and is of the type IQueryable this is my joining table.

I want to convert the IQueryable column name RoleName to a string array.

I have only just started playing with Linq as well and know of ToArray() but seem to be missing something or this isn't the function I want.

I could iterate over each item in the UserRoles property but seems a little excessive.

I appreciate your help! Cheers.


Try

something.Select(r => r.RoleName).ToArray()
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜