私はテーブルFooを持っている: create table Foo(
FooId uniqueidentifier not null,
UserId uniqueidentifier not null,
TimeSpent bigint not null)
これはクラスにマップされます。 public class Foo
{
public Guid Fo
私はLinqToSqlのアプローチについて質問があります。 モデル: public class Person
{
public int ID { get; set; }
public string LastName { get; set; }
public Phone Phone { get; set; }
}
public class Phone
{