Tagged Questions

With this keyword classes can be split into multiple definitions, but it compiles into one class.

learn more… | top users | synonyms

27
votes
6answers
7k views

Is it possible to have two partial classes in different assemblies represent the same class?

I have a class called 'Article' in a project called 'MyProject.Data', which acts as the data layer for my web application. I have a separate project called 'MyProject.Admin', which is a web-based ...
13
votes
8answers
2k views

Best Practices: When not/to use partial classes

I have been using the partial class modifier for some time in order to put helper classes in their own file. Today we got a new guy and he said that the last team he worked with didn't allow partial ...
12
votes
2answers
119 views

Is it possible to break an interface into 2 partial interfaces and implement it in 2 partial classes?

I am making fairly extensive and ongoing modifications to a third party product for my employer. One of the major considerations when implementing my code has been to segregate it as much as possible ...
12
votes
1answer
1k 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 ...
12
votes
9answers
12k views

Override Default Constructor of Partial Class with Another Partial Class

I don't think this is possible, but if is then I need it :) I have a auto-generated proxy file from the wsdl.exe command line tool by Visual Studio 2008. The proxy output is partial classes. I want ...
12
votes
20answers
2k views

Partial Classes in C#

Are there are good uses of Partial Classes outside the webforms/winforms generated code scenarios? Or is this feature basically to support that?
11
votes
6answers
388 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 ...
8
votes
3answers
340 views

WinForm partial classes

I have a WinForm project that contains a form called MainUI. You can see that the automatically generated partial class shows up as a node under MainUI.cs. Is there a way to "move" my self created ...
8
votes
8answers
598 views

Why cant partial methods be public if the implementation is in the same assembly?

According to this http://msdn.microsoft.com/en-us/library/wa80x488.aspx "Partial methods are implicitly private" So you can have this // Definition in file1.cs partial void Method1(); // ...
8
votes
1answer
626 views

Prevent DebuggerStepThroughAttribute from applying to my non-xsd-generated partial class?

I used the xsd.exe tool to generate a class based on my xml schema. It created a public partial class with DebuggerStepThroughAttribute. Well, I created another partial class file for this class to ...
7
votes
3answers
913 views

Adding DataAnnontations to Generated Partial Classes

I have a Subsonic3 Active Record generated partial User class which I've extended on with some methods in a separate partial class. I would like to know if it is possible to add Data Annotations to ...
7
votes
4answers
6k views

C# partial class

How do I program a partial class in C# in multiple files and in different namespaces?
6
votes
1answer
385 views

C# - XML Commenting on partial classes/methods

Is there a standard way that the tools used to generate the API documents handle having XML Style comments on partial classes? Basically, how should one comment a partial class/method so that the ...
6
votes
2answers
241 views

Merge multiple .NET binaries together?

I want to program something in both C# and F#. I have partial classes and i would like to define F# methods in a few of them. I get the issue that a partial class can not be spanned across 2 DLLs. Is ...
6
votes
5answers
1k views

C# Partial Classes

I currently have a solution with multiple projects that mostly use the same classes. As a result, it appeared to me that it would be a good idea to add a class library containing these classes in the ...
5
votes
2answers
137 views

ASP.NET Dynamic Data not seeing partial metadata “buddy” class

I have an ASP.NET 4 Dynamic Data web site that is running against a fairly simple set of database tables, exposed through an Entity Framework model in another assembly. I don't want to scaffold all of ...
5
votes
1answer
261 views

NUnit, TestDriven.Net: Duplicate test results with partial test classes

I just discovered that I was getting twice the number of tests run that I should've been getting. Discovered it when a test broke and I got two identical test failures. Same test, same everything. Got ...
4
votes
4answers
111 views

Implementation of interface in C++

I need little help with inheritance in C++. I have code with same structure like this: class IBase { public: virtual long Dimensions() = 0; }; class IShape : public IBase { virtual long ...
4
votes
2answers
70 views

How do you test for a renamed partial method?

I'm using Linq to SQL, which generates partial classes and partial methods. You then extend that generated code by implementing your your customizations manually in another partial class. One of the ...
4
votes
7answers
478 views

Partial Class vs Extension Method

I dont have much experience of using these 2 ways to extend a class or create extension methods against a class. By looking others work, I have a question here. I saw ppl using parital class to ...
4
votes
2answers
378 views

What does the partial mean?

public partial class Form1 : Form What does the partial in this declaration mean? I understand we have a class Form1 that inherits from Form. But what does the partial mean?
4
votes
2answers
135 views

Additional partial classes for a Form

We have a big Form class that we like to split into peaces using partial class approach That could be done by manually modifying a project file, and adding MainFormPN.vb entry <Compile ...
4
votes
4answers
325 views

Partial User Control

In Asp.net Web forms why must a user control be partial? I tried to remove the partial keyword and it says: Missing partial modifier on declaration of type 'test'; another partial declaration ...
4
votes
1answer
2k views

partial classes/partial class file

In C# .net there is a provision to have two different class files and make them a single class using the keyword partial keyword.this helps it to keep [for ex]UI and logic seperate. of course we can ...
4
votes
1answer
397 views

How to make user control partial classes aware of controls declared in the base class?

Do we have to do something special to have ASP.NET partial classes aware of controls that are declared in our user control's base classes? The partial classes keep generating declarations for controls ...
4
votes
4answers
174 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!
4
votes
4answers
700 views

Why are aspx code-behind files declared as partial classes?

Why is the code behind a partial class for aspx pages?
4
votes
6answers
5k views

C#: How to set default value for a property in a partial class?

I'm very new to C# so please bear with me... I'm implementing a partial class, and would like to add two properties like so: public partial class SomeModel { public bool IsSomething { get; set; ...
4
votes
4answers
803 views

.NET Partial Classes vs. Inheritance

Okay, so we have a utility here in-house that generates business-model classes from our database tables and views, similar to (but not quite exactly like) an ORM. In maintaining it, it occurred to me ...
3
votes
4answers
81 views

How to combine a Partial Class Object in C#?

I defined a class: public class Sample{ public string name {get;set;} public int price {get;set} } Then Sample sampleA = new Sample(); sampleA.name = "test"; Sample sampleB = new ...
3
votes
3answers
65 views

Cross-DDL Extension of an Entityclass

What I want to archieve: Service assembly (project) that holds EntityClasses - pure Data. GUI assembly that extends those Entities for its own pourposes - Runtime information for GUI. What I ...
3
votes
1answer
342 views

Inheritance with Silverlight User Control Partial Classes

I am trying to allow several classes to inherit a more general Silverlight user control to avoid redundancy in my code. The classes inherit the extended control, which then inherits the User Control ...
3
votes
3answers
423 views

EF 4, how to add partial classes

I needed to extend my EF partial classes, because I want to add some functionality to able to use Oracle's sequences , however I really don't know how to use this partial class thing, I made a ...
3
votes
2answers
250 views

Adding attributes to properties in the Linq2Sql DBML

We are working with a database containing metadata on all database tables and fields used in our applications. From this metadata, we generate code that contains partial classes, extending our ...
3
votes
7answers
247 views

Implementing interfaces in partial classes

Consider a class which implements a lot of interfaces, would it make sense to implement each interface in a separate file using partial class definitions? Would this be an abuse of the language ...
3
votes
5answers
1k views

Partial classes in separate dlls

Is it possible to have two parts (same namespace, same class name) to a partial class in separate DLLs?
3
votes
1answer
1k views

override a method using a partial class

I have a class formed by two partial classes. One created by ORM code generation and one for extensions. In this particular instance, I need to override one of the properties generated by the ...
3
votes
3answers
871 views

Can I define properties in partial classes, then mark them with attributes in another partial class?

Is there a way I can have a generated code file like so: public partial class A { public string a {get; set;} } and then in another file: public partial class A { [Attribute("etc")] public string ...
3
votes
2answers
176 views

problems with extended classes and overwrite with methods

I have a .net website written in C# and will make functionalities that other developers can use. So I will make some default implementation and a developer can overwrite some methods Example: i have ...
3
votes
2answers
153 views

ColdFusion CFC implementation of C# Partial Class?

Does ColdFusion offer a mechanism for splitting CFCs into multiple files? I am NOT talking about extension, I am talking about splitting the SAME CFC into multiple files; the same way C# allows for ...
3
votes
1answer
677 views

List of all domain classes in Grails

how can I get a list of alle domain classes I use in my project? Something like GORM.domains.list().
3
votes
2answers
100 views

Using a part of a class in multiple projects

I have a set of methods that do some utility work over SQL connection, and until now these have been copied over from project to project. But as time goes on, project numbers have grown and I need to ...
3
votes
5answers
2k views

Can i call a function defined in one partial class from another partial class. Is it possible?

I have created two partial classes for a web page. Now i have given a defination of one function say submit() that i m calling at OnSubmit event of button. But this function is not being called, ...
3
votes
3answers
196 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 ...
3
votes
3answers
3k 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 ...
3
votes
6answers
3k views

Error with C# Partial classes

I am using partial classes to split some functionality between 2 files, but I am getting an error. What am I doing wrong? A1.cs: private partial class A { private string SomeProperty { get { ...
2
votes
4answers
86 views

Is it possible to declare a partial class in two projects

Consider we create a partial class in Project1 and we have a Project2 that has reference to Project1 .How is it possible to declare some other method of partial class in Project2 ? thanks
2
votes
2answers
41 views

How do I remove format from Linq property?

I´m building a Windows Forms aplication using LINQ to SQL. I´m using the auto generated code from the dbml file. Visual studio generated this code for the CNPJ property from my table: ...
2
votes
1answer
154 views

Add [IgnoreDataMemeber] to specific properties in a generated partial class

I have an Entity Framework POCO class that is generated by a T4 Template. I am planning to use the generated class as my data contract. However, it has a few properties that don't need to be in the ...
2
votes
3answers
204 views

Why does the Entity Framework generate entities as partial classes?

Other ORMs I've used, such as Torque, Propel or Doctrine, generate 2 classes for each entity: for example, BaseCustomer and Customer. Customer inherits from BaseCustomer, and you can override methods ...

1 2 3 4