You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
507 B
C#
21 lines
507 B
C#
using System;
|
|
using System.Linq;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace EntityFrameworkCore.Jet.IntegrationTests.Model41
|
|
{
|
|
public abstract class Test : TestBase<DemoContext>
|
|
{
|
|
[TestMethod]
|
|
public void Model41Run()
|
|
{
|
|
{
|
|
// ReSharper disable once ReturnValueOfPureMethodIsNotUsed
|
|
Context.Applicants.Count();
|
|
//Context.Applicants.AsQueryable().Where("Ciao");
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|