0
votes
5answers
84 views
Using partial classes to add private properties?
I have a public class I'm defining that will eventually be part of an API, so it has to have certain public properties. However, I also want some of the properties to be read-only unless they're …
3
votes
4answers
95 views
Under what conditions it is good to have a “partial class?”
When does it become a good idea to have your class separate into two .cs and have it as a partial class?
Are there some signs showing that it is time to go with partial class?
Thanks!
0
votes
1answer
24 views
Model - Partial class and Datacontext class are not communicating.
Hello,
I've created a one table contact DB, which has only 3 columns (Id, Name, and Phone). I've then created the ContactsDataContext using my table Contacts in the model folder. Finally, I create a …
0
votes
2answers
33 views
Nested link_to_function/insert_html does not work
Here is a simple example of the problem.
http://gist.github.com/235729
In short, if you have a index.rhtml with:
<%= link_to_function "A link to insert a partial with nested insert_html" do …
1
vote
1answer
37 views
LINQ to SQL testing
Hi
I'm using Linq to sql to access an SQL Server.
I try to write all my database queries in a partial class so they can be accessed directly from the DataContext.
Now I would like to test the Data …
0
votes
1answer
130 views
Properties in partial class not appearing in Data Sources window!
Entity Framework has created the required partial classes. I can add these partial classes to the Data Sources window and the properties display as expected. However, if I extend any of the classes in …
3
votes
3answers
55 views
Partial Classes and Data Access Code
I have a lot of classes for data-access in one of my projects, but these classes are becoming extremely bulky because of the code that retrieves the data from the data readers.
My code generally …
0
votes
3answers
182 views
Partial Class Constructors
Is there a way to have a partial class' constructor call another method that my or may not be defined?
Basically my partial class constructor is defined:
public partial class Test
{
public …
1
vote
5answers
308 views
C++ partial method specialization
Is there a partial specialization for template class method?
template <class A, class B>
class C
{
void foo();
}
it doesn't work to specialize it like this:
template <class A> …
3
votes
4answers
215 views
Why are aspx code-behind files declared as partial classes?
Why is the code behind a partial class for aspx pages?
0
votes
2answers
34 views
MVC Partial Controls
Ok I have a menu system with a menu (Dynamicly Generated from a datavbase field) I want to include this menu system on several views - All of which use differant controllers and models.
<ul>
…
2
votes
1answer
77 views
Naming Conventions For Partial Class Files
I'm generating the bulk of my ASP.NET MVC scaffolding code. All generated files are partial classes which use standard naming conventions. For example, my employee controller file is named …
0
votes
1answer
109 views
implicit conversion - strongly typed datatable to datatable ???
Not sure why I'm getting this error. Project is converted from VS 2005, to VS 2008, but remains with 2.0 framework..
image of the error message
Here is the interface with my generic type and …
8
votes
5answers
220 views
C# - what’s the major problem solved by “partial” classes?
I'm asking this because I find it quite a dangerous feature to distribute the class definition so that you can't really be sure if you know all about it. Even if I find three partial definitions, how …
0
votes
1answer
80 views
More validation on generated Linq Entity Classes
We're using sqlmetal to generate our DBML, run it through a transformation, then use sql metal to generate the DataContext classes -- additionally, I want to automatically generate some validation for …
