|
Παρουσίαση με Ετικέτες
Όλες οι Ετικέτε... » Xpo (RSS)
-
Our profiler uses WCF in order to communicate with the client application. One of the benefits of the XPOProfiler is that it supports 2 binding types. Both binding types have their advantages however in this situation only one allows us the flexibility we require. NetTcpBinding This option provides a secure and reliable binding environment for ...
-
When you try assign a only time to a datetime and save it you are going to get an an exception like the one in the subject.
i have added to eXpand an SqlDateTimeOverFlowValueConverter to help you deal with that public class SqlDateTimeOverFlowValueConverter:ValueConverter { public override Type StorageType { ...
-
Pretty silent these days eh? I am working on a big refactoring on DictionaryDifference and have not much time to blog.
But have another tip for my Xaf Tips series today maybe not strictly Xaf but is an XPO tip that you can use with your Xaf applications .
The Problem
Suppose your are a strongly typed fun like me or you want to use linq to ...
-
Yes I know that is not the best practice. When using Xaf or Xpo you should first design your objects and let the framework create the database schema based on objects metadata (attributes). But there are many cases that the database is already design and you can not change it.
What about those projects?
Are you going to say to your customer ...
-
Because XPbaseObject implements INotifyPropertyChanged property setters need to be implemented using a special way like public string Name
{
get
{
return name;
}
set
{ ...
-
Today i stump again upon the same problem . I wanted to throw a validation exception only if both of my properties do not have value. So lets create a validation rule for this one. More info on how we create custom validation rules can be found here Validation Module Since we are talking about multiple property values i think we should go with an ...
-
The problem Xpo in order to support transactions implements some special kind of property setters like private string lastName;
public string LastName
{
get
{
return lastName;
}
set
{
string oldValue = lastName;
if (oldValue == value)
return;
lastName = value;
...
|
|
|