Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What to do in this situation?
Message
 
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 4.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01622794
Message ID:
01622831
Views:
32
>>Hi everybody,
>>
>>We have a Web Application with a few layers to access and return data. In the repository we're normally doing queries and return an IEnumerable of the class or just one row of the class.
>>
>>I have a need to return just 2 columns back. I don't want to define a new class. What do you normally do in this situation? E.g. how do you define a method to return a new object without creating a new class? Do you use just object in the signature?
>
>Not enough info about your layers but, in general, I *would* create a new class for the two fields - but farther down the hierarchy and not at the repository level.
>You can then retrieve the full rows and use Linq to select into the smaller class. e.g:
var shortRecords = fullRecords.Select(x => new ShortRecord {Age = x.Age, Name = x.Name});
Returning an object jeopardizes type safety and can quickly become messy.....

Where would you create this class - at the model level?

E.g. we have Data, Model, Repository, Adapter and the API controller. I need to return it back to APIController through repository and adapter.

Thanks again, I'll go the class route then rather than returning an object.
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform